You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Returns The volume effect to apply to the video asset <ul> <li>`fadeIn` - fade volume in only</li> <li>`fadeOut` - fade volume out only</li> <li>`fadeInFadeOut` - fade volume in and out</li> </ul>
512
+
* @return {module:model/Asset.VolumeEffectEnum}
513
+
*/
514
+
exports.prototype.getVolumeEffect=function(){
515
+
returnthis['volumeEffect'];
516
+
}
517
+
518
+
/**
519
+
* Sets The volume effect to apply to the video asset <ul> <li>`fadeIn` - fade volume in only</li> <li>`fadeOut` - fade volume out only</li> <li>`fadeInFadeOut` - fade volume in and out</li> </ul>
520
+
* @param {module:model/Asset.VolumeEffectEnum} volumeEffect The volume effect to apply to the video asset <ul> <li>`fadeIn` - fade volume in only</li> <li>`fadeOut` - fade volume out only</li> <li>`fadeInFadeOut` - fade volume in and out</li> </ul>
Copy file name to clipboardExpand all lines: src/model/S3DestinationOptions.js
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -43,10 +43,14 @@
43
43
* Pass additional options to control how files are stored in S3.
44
44
* @alias module:model/S3DestinationOptions
45
45
* @class
46
+
* @param region {String} Choose the region to send the file to. Must be a valid [AWS region](https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_region) string like `us-east-1` or `ap-southeast-2`.
47
+
* @param bucket {String} The bucket name to send files to. The bucket must exist in the AWS account before files can be sent.
46
48
*/
47
-
varexports=function(){
49
+
varexports=function(region,bucket){
48
50
var_this=this;
49
51
52
+
_this['region']=region;
53
+
_this['bucket']=bucket;
50
54
};
51
55
52
56
/**
@@ -79,7 +83,7 @@
79
83
}
80
84
81
85
/**
82
-
* Choose the region to send the file to. Must be a valid [AWS region] string like `us-east-1` or `ap-southeast-2`.
86
+
* Choose the region to send the file to. Must be a valid [AWS region](https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_region) string like `us-east-1` or `ap-southeast-2`.
83
87
* @member {String} region
84
88
*/
85
89
exports.prototype['region']=undefined;
@@ -106,16 +110,16 @@
106
110
107
111
108
112
/**
109
-
* Returns Choose the region to send the file to. Must be a valid [AWS region] string like `us-east-1` or `ap-southeast-2`.
113
+
* Returns Choose the region to send the file to. Must be a valid [AWS region](https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_region) string like `us-east-1` or `ap-southeast-2`.
110
114
* @return {String}
111
115
*/
112
116
exports.prototype.getRegion=function(){
113
117
returnthis['region'];
114
118
}
115
119
116
120
/**
117
-
* Sets Choose the region to send the file to. Must be a valid [AWS region] string like `us-east-1` or `ap-southeast-2`.
118
-
* @param {String} region Choose the region to send the file to. Must be a valid [AWS region] string like `us-east-1` or `ap-southeast-2`.
121
+
* Sets Choose the region to send the file to. Must be a valid [AWS region](https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_region) string like `us-east-1` or `ap-southeast-2`.
122
+
* @param {String} region Choose the region to send the file to. Must be a valid [AWS region](https://docs.aws.amazon.com/general/latest/gr/s3.html#s3_region) string like `us-east-1` or `ap-southeast-2`.
0 commit comments