aws-sdk-elastictranscoder 1.39.0 → 1.41.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-elastictranscoder/client.rb +77 -72
- data/lib/aws-sdk-elastictranscoder/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-elastictranscoder/types.rb +187 -1228
- data/lib/aws-sdk-elastictranscoder.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b307fe687b53935692c4dc458d4bd87ae4e340e6b5b0c116e17ba6f01dd6a396
|
4
|
+
data.tar.gz: 6e74a8a6dd5250f79c8083af1bf560cca3939f025dc1f8b0bd5a7f4a0debbf72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac305dff28e09a55dae1c4de2c686a8bd085e858ce48aae7fa052db842eab4b095c15b3b7cf0d44cbb456f1e375561f700ce9cf6e0aef4487f9ce93ab9028cfa
|
7
|
+
data.tar.gz: e6b980e68d090de5065369e54e4231ee151e242ca0610121d650c9642468514ee130a249ff40ec84dc1be1f9ae44cfc1da05644711c2611493d88bdee39fcaa9
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.41.0 (2023-05-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.40.0 (2023-01-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
15
|
+
|
4
16
|
1.39.0 (2022-10-25)
|
5
17
|
------------------
|
6
18
|
|
@@ -263,4 +275,4 @@ Unreleased Changes
|
|
263
275
|
1.0.0.rc1 (2016-12-05)
|
264
276
|
------------------
|
265
277
|
|
266
|
-
* Feature - Initial preview release of the `aws-sdk-elastictranscoder` gem.
|
278
|
+
* Feature - Initial preview release of the `aws-sdk-elastictranscoder` gem.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.41.0
|
@@ -275,6 +275,11 @@ module Aws::ElasticTranscoder
|
|
275
275
|
# in the future.
|
276
276
|
#
|
277
277
|
#
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
279
|
+
# A unique and opaque application ID that is appended to the
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
281
|
+
# maximum length of 50.
|
282
|
+
#
|
278
283
|
# @option options [String] :secret_access_key
|
279
284
|
#
|
280
285
|
# @option options [String] :session_token
|
@@ -1034,24 +1039,24 @@ module Aws::ElasticTranscoder
|
|
1034
1039
|
# To receive notifications, you must also subscribe to the new topic in
|
1035
1040
|
# the Amazon SNS console.
|
1036
1041
|
#
|
1037
|
-
# * **Progressing
|
1042
|
+
# * **Progressing**: The topic ARN for the Amazon Simple Notification
|
1038
1043
|
# Service (Amazon SNS) topic that you want to notify when Elastic
|
1039
1044
|
# Transcoder has started to process a job in this pipeline. This is
|
1040
1045
|
# the ARN that Amazon SNS returned when you created the topic. For
|
1041
1046
|
# more information, see Create a Topic in the Amazon Simple
|
1042
1047
|
# Notification Service Developer Guide.
|
1043
1048
|
#
|
1044
|
-
# * **Complete
|
1049
|
+
# * **Complete**: The topic ARN for the Amazon SNS topic that you want
|
1045
1050
|
# to notify when Elastic Transcoder has finished processing a job in
|
1046
1051
|
# this pipeline. This is the ARN that Amazon SNS returned when you
|
1047
1052
|
# created the topic.
|
1048
1053
|
#
|
1049
|
-
# * **Warning
|
1050
|
-
#
|
1051
|
-
#
|
1052
|
-
#
|
1054
|
+
# * **Warning**: The topic ARN for the Amazon SNS topic that you want to
|
1055
|
+
# notify when Elastic Transcoder encounters a warning condition while
|
1056
|
+
# processing a job in this pipeline. This is the ARN that Amazon SNS
|
1057
|
+
# returned when you created the topic.
|
1053
1058
|
#
|
1054
|
-
# * **Error
|
1059
|
+
# * **Error**: The topic ARN for the Amazon SNS topic that you want to
|
1055
1060
|
# notify when Elastic Transcoder encounters an error condition while
|
1056
1061
|
# processing a job in this pipeline. This is the ARN that Amazon SNS
|
1057
1062
|
# returned when you created the topic.
|
@@ -1069,7 +1074,7 @@ module Aws::ElasticTranscoder
|
|
1069
1074
|
# If you specify values for `ContentConfig` and `ThumbnailConfig`, omit
|
1070
1075
|
# the `OutputBucket` object.
|
1071
1076
|
#
|
1072
|
-
# * **Bucket
|
1077
|
+
# * **Bucket**: The Amazon S3 bucket in which you want Elastic
|
1073
1078
|
# Transcoder to save transcoded files and playlists.
|
1074
1079
|
#
|
1075
1080
|
# * **Permissions** (Optional): The Permissions object specifies which
|
@@ -1077,10 +1082,10 @@ module Aws::ElasticTranscoder
|
|
1077
1082
|
# access you want them to have. You can grant permissions to a maximum
|
1078
1083
|
# of 30 users and/or predefined Amazon S3 groups.
|
1079
1084
|
#
|
1080
|
-
# * **Grantee Type
|
1085
|
+
# * **Grantee Type**: Specify the type of value that appears in the
|
1081
1086
|
# `Grantee` object:
|
1082
1087
|
#
|
1083
|
-
# * **Canonical
|
1088
|
+
# * **Canonical**: The value in the `Grantee` object is either the
|
1084
1089
|
# canonical user ID for an AWS account or an origin access identity
|
1085
1090
|
# for an Amazon CloudFront distribution. For more information about
|
1086
1091
|
# canonical user IDs, see Access Control List (ACL) Overview in the
|
@@ -1092,38 +1097,38 @@ module Aws::ElasticTranscoder
|
|
1092
1097
|
#
|
1093
1098
|
# A canonical user ID is not the same as an AWS account number.
|
1094
1099
|
#
|
1095
|
-
# * **Email
|
1100
|
+
# * **Email**: The value in the `Grantee` object is the registered
|
1096
1101
|
# email address of an AWS account.
|
1097
1102
|
#
|
1098
|
-
# * **Group
|
1103
|
+
# * **Group**: The value in the `Grantee` object is one of the
|
1099
1104
|
# following predefined Amazon S3 groups: `AllUsers`,
|
1100
1105
|
# `AuthenticatedUsers`, or `LogDelivery`.
|
1101
1106
|
#
|
1102
|
-
# * **Grantee
|
1107
|
+
# * **Grantee**: The AWS user or group that you want to have access to
|
1103
1108
|
# transcoded files and playlists. To identify the user or group, you
|
1104
1109
|
# can specify the canonical user ID for an AWS account, an origin
|
1105
1110
|
# access identity for a CloudFront distribution, the registered email
|
1106
1111
|
# address of an AWS account, or a predefined Amazon S3 group
|
1107
1112
|
#
|
1108
|
-
# * **Access
|
1113
|
+
# * **Access**: The permission that you want to give to the AWS user
|
1109
1114
|
# that you specified in `Grantee`. Permissions are granted on the
|
1110
1115
|
# files that Elastic Transcoder adds to the bucket, including
|
1111
1116
|
# playlists and video files. Valid values include:
|
1112
1117
|
#
|
1113
|
-
# * `READ
|
1118
|
+
# * `READ`: The grantee can read the objects and metadata for objects
|
1114
1119
|
# that Elastic Transcoder adds to the Amazon S3 bucket.
|
1115
1120
|
#
|
1116
|
-
# * `READ_ACP
|
1121
|
+
# * `READ_ACP`: The grantee can read the object ACL for objects that
|
1117
1122
|
# Elastic Transcoder adds to the Amazon S3 bucket.
|
1118
1123
|
#
|
1119
|
-
# * `WRITE_ACP
|
1124
|
+
# * `WRITE_ACP`: The grantee can write the ACL for the objects that
|
1120
1125
|
# Elastic Transcoder adds to the Amazon S3 bucket.
|
1121
1126
|
#
|
1122
|
-
# * `FULL_CONTROL
|
1127
|
+
# * `FULL_CONTROL`: The grantee has `READ`, `READ_ACP`, and
|
1123
1128
|
# `WRITE_ACP` permissions for the objects that Elastic Transcoder
|
1124
1129
|
# adds to the Amazon S3 bucket.
|
1125
1130
|
#
|
1126
|
-
# * **StorageClass
|
1131
|
+
# * **StorageClass**: The Amazon S3 storage class, `Standard` or
|
1127
1132
|
# `ReducedRedundancy`, that you want Elastic Transcoder to assign to
|
1128
1133
|
# the video files and playlists that it stores in your Amazon S3
|
1129
1134
|
# bucket.
|
@@ -1142,7 +1147,7 @@ module Aws::ElasticTranscoder
|
|
1142
1147
|
# If you specify values for `ContentConfig` and `ThumbnailConfig`, omit
|
1143
1148
|
# the `OutputBucket` object.
|
1144
1149
|
#
|
1145
|
-
# * **Bucket
|
1150
|
+
# * **Bucket**: The Amazon S3 bucket in which you want Elastic
|
1146
1151
|
# Transcoder to save thumbnail files.
|
1147
1152
|
#
|
1148
1153
|
# * **Permissions** (Optional): The `Permissions` object specifies which
|
@@ -1151,47 +1156,47 @@ module Aws::ElasticTranscoder
|
|
1151
1156
|
# can grant permissions to a maximum of 30 users and/or predefined
|
1152
1157
|
# Amazon S3 groups.
|
1153
1158
|
#
|
1154
|
-
# * **GranteeType
|
1159
|
+
# * **GranteeType**: Specify the type of value that appears in the
|
1155
1160
|
# Grantee object:
|
1156
1161
|
#
|
1157
|
-
# * **Canonical
|
1162
|
+
# * **Canonical**: The value in the `Grantee` object is either the
|
1158
1163
|
# canonical user ID for an AWS account or an origin access identity
|
1159
1164
|
# for an Amazon CloudFront distribution.
|
1160
1165
|
#
|
1161
1166
|
# A canonical user ID is not the same as an AWS account number.
|
1162
1167
|
#
|
1163
|
-
# * **Email
|
1168
|
+
# * **Email**: The value in the `Grantee` object is the registered
|
1164
1169
|
# email address of an AWS account.
|
1165
1170
|
#
|
1166
|
-
# * **Group
|
1171
|
+
# * **Group**: The value in the `Grantee` object is one of the
|
1167
1172
|
# following predefined Amazon S3 groups: `AllUsers`,
|
1168
1173
|
# `AuthenticatedUsers`, or `LogDelivery`.
|
1169
1174
|
#
|
1170
|
-
# * **Grantee
|
1175
|
+
# * **Grantee**: The AWS user or group that you want to have access to
|
1171
1176
|
# thumbnail files. To identify the user or group, you can specify the
|
1172
1177
|
# canonical user ID for an AWS account, an origin access identity for
|
1173
1178
|
# a CloudFront distribution, the registered email address of an AWS
|
1174
1179
|
# account, or a predefined Amazon S3 group.
|
1175
1180
|
#
|
1176
|
-
# * **Access
|
1181
|
+
# * **Access**: The permission that you want to give to the AWS user
|
1177
1182
|
# that you specified in `Grantee`. Permissions are granted on the
|
1178
1183
|
# thumbnail files that Elastic Transcoder adds to the bucket. Valid
|
1179
1184
|
# values include:
|
1180
1185
|
#
|
1181
|
-
# * `READ
|
1186
|
+
# * `READ`: The grantee can read the thumbnails and metadata for
|
1182
1187
|
# objects that Elastic Transcoder adds to the Amazon S3 bucket.
|
1183
1188
|
#
|
1184
|
-
# * `READ_ACP
|
1189
|
+
# * `READ_ACP`: The grantee can read the object ACL for thumbnails
|
1185
1190
|
# that Elastic Transcoder adds to the Amazon S3 bucket.
|
1186
1191
|
#
|
1187
|
-
# * `WRITE_ACP
|
1188
|
-
#
|
1192
|
+
# * `WRITE_ACP`: The grantee can write the ACL for the thumbnails that
|
1193
|
+
# Elastic Transcoder adds to the Amazon S3 bucket.
|
1189
1194
|
#
|
1190
|
-
# * `FULL_CONTROL
|
1195
|
+
# * `FULL_CONTROL`: The grantee has `READ`, `READ_ACP`, and
|
1191
1196
|
# `WRITE_ACP` permissions for the thumbnails that Elastic Transcoder
|
1192
1197
|
# adds to the Amazon S3 bucket.
|
1193
1198
|
#
|
1194
|
-
# * **StorageClass
|
1199
|
+
# * **StorageClass**: The Amazon S3 storage class, `Standard` or
|
1195
1200
|
# `ReducedRedundancy`, that you want Elastic Transcoder to assign to
|
1196
1201
|
# the thumbnails that it stores in your Amazon S3 bucket.
|
1197
1202
|
#
|
@@ -2627,21 +2632,21 @@ module Aws::ElasticTranscoder
|
|
2627
2632
|
# To receive notifications, you must also subscribe to the new topic in
|
2628
2633
|
# the Amazon SNS console.
|
2629
2634
|
#
|
2630
|
-
# * **Progressing
|
2635
|
+
# * **Progressing**: The topic ARN for the Amazon Simple Notification
|
2631
2636
|
# Service (Amazon SNS) topic that you want to notify when Elastic
|
2632
2637
|
# Transcoder has started to process jobs that are added to this
|
2633
2638
|
# pipeline. This is the ARN that Amazon SNS returned when you created
|
2634
2639
|
# the topic.
|
2635
2640
|
#
|
2636
|
-
# * **Complete
|
2641
|
+
# * **Complete**: The topic ARN for the Amazon SNS topic that you want
|
2637
2642
|
# to notify when Elastic Transcoder has finished processing a job.
|
2638
2643
|
# This is the ARN that Amazon SNS returned when you created the topic.
|
2639
2644
|
#
|
2640
|
-
# * **Warning
|
2641
|
-
#
|
2642
|
-
#
|
2645
|
+
# * **Warning**: The topic ARN for the Amazon SNS topic that you want to
|
2646
|
+
# notify when Elastic Transcoder encounters a warning condition. This
|
2647
|
+
# is the ARN that Amazon SNS returned when you created the topic.
|
2643
2648
|
#
|
2644
|
-
# * **Error
|
2649
|
+
# * **Error**: The topic ARN for the Amazon SNS topic that you want to
|
2645
2650
|
# notify when Elastic Transcoder encounters an error condition. This
|
2646
2651
|
# is the ARN that Amazon SNS returned when you created the topic.
|
2647
2652
|
#
|
@@ -2658,7 +2663,7 @@ module Aws::ElasticTranscoder
|
|
2658
2663
|
# If you specify values for `ContentConfig` and `ThumbnailConfig`, omit
|
2659
2664
|
# the `OutputBucket` object.
|
2660
2665
|
#
|
2661
|
-
# * **Bucket
|
2666
|
+
# * **Bucket**: The Amazon S3 bucket in which you want Elastic
|
2662
2667
|
# Transcoder to save transcoded files and playlists.
|
2663
2668
|
#
|
2664
2669
|
# * **Permissions** (Optional): The Permissions object specifies which
|
@@ -2666,10 +2671,10 @@ module Aws::ElasticTranscoder
|
|
2666
2671
|
# access you want them to have. You can grant permissions to a maximum
|
2667
2672
|
# of 30 users and/or predefined Amazon S3 groups.
|
2668
2673
|
#
|
2669
|
-
# * **Grantee Type
|
2674
|
+
# * **Grantee Type**: Specify the type of value that appears in the
|
2670
2675
|
# `Grantee` object:
|
2671
2676
|
#
|
2672
|
-
# * **Canonical
|
2677
|
+
# * **Canonical**: The value in the `Grantee` object is either the
|
2673
2678
|
# canonical user ID for an AWS account or an origin access identity
|
2674
2679
|
# for an Amazon CloudFront distribution. For more information about
|
2675
2680
|
# canonical user IDs, see Access Control List (ACL) Overview in the
|
@@ -2681,38 +2686,38 @@ module Aws::ElasticTranscoder
|
|
2681
2686
|
#
|
2682
2687
|
# A canonical user ID is not the same as an AWS account number.
|
2683
2688
|
#
|
2684
|
-
# * **Email
|
2689
|
+
# * **Email**: The value in the `Grantee` object is the registered
|
2685
2690
|
# email address of an AWS account.
|
2686
2691
|
#
|
2687
|
-
# * **Group
|
2692
|
+
# * **Group**: The value in the `Grantee` object is one of the
|
2688
2693
|
# following predefined Amazon S3 groups: `AllUsers`,
|
2689
2694
|
# `AuthenticatedUsers`, or `LogDelivery`.
|
2690
2695
|
#
|
2691
|
-
# * **Grantee
|
2696
|
+
# * **Grantee**: The AWS user or group that you want to have access to
|
2692
2697
|
# transcoded files and playlists. To identify the user or group, you
|
2693
2698
|
# can specify the canonical user ID for an AWS account, an origin
|
2694
2699
|
# access identity for a CloudFront distribution, the registered email
|
2695
2700
|
# address of an AWS account, or a predefined Amazon S3 group
|
2696
2701
|
#
|
2697
|
-
# * **Access
|
2702
|
+
# * **Access**: The permission that you want to give to the AWS user
|
2698
2703
|
# that you specified in `Grantee`. Permissions are granted on the
|
2699
2704
|
# files that Elastic Transcoder adds to the bucket, including
|
2700
2705
|
# playlists and video files. Valid values include:
|
2701
2706
|
#
|
2702
|
-
# * `READ
|
2707
|
+
# * `READ`: The grantee can read the objects and metadata for objects
|
2703
2708
|
# that Elastic Transcoder adds to the Amazon S3 bucket.
|
2704
2709
|
#
|
2705
|
-
# * `READ_ACP
|
2710
|
+
# * `READ_ACP`: The grantee can read the object ACL for objects that
|
2706
2711
|
# Elastic Transcoder adds to the Amazon S3 bucket.
|
2707
2712
|
#
|
2708
|
-
# * `WRITE_ACP
|
2713
|
+
# * `WRITE_ACP`: The grantee can write the ACL for the objects that
|
2709
2714
|
# Elastic Transcoder adds to the Amazon S3 bucket.
|
2710
2715
|
#
|
2711
|
-
# * `FULL_CONTROL
|
2716
|
+
# * `FULL_CONTROL`: The grantee has `READ`, `READ_ACP`, and
|
2712
2717
|
# `WRITE_ACP` permissions for the objects that Elastic Transcoder
|
2713
2718
|
# adds to the Amazon S3 bucket.
|
2714
2719
|
#
|
2715
|
-
# * **StorageClass
|
2720
|
+
# * **StorageClass**: The Amazon S3 storage class, `Standard` or
|
2716
2721
|
# `ReducedRedundancy`, that you want Elastic Transcoder to assign to
|
2717
2722
|
# the video files and playlists that it stores in your Amazon S3
|
2718
2723
|
# bucket.
|
@@ -2731,7 +2736,7 @@ module Aws::ElasticTranscoder
|
|
2731
2736
|
# If you specify values for `ContentConfig` and `ThumbnailConfig`, omit
|
2732
2737
|
# the `OutputBucket` object.
|
2733
2738
|
#
|
2734
|
-
# * **Bucket
|
2739
|
+
# * **Bucket**: The Amazon S3 bucket in which you want Elastic
|
2735
2740
|
# Transcoder to save thumbnail files.
|
2736
2741
|
#
|
2737
2742
|
# * **Permissions** (Optional): The `Permissions` object specifies which
|
@@ -2740,47 +2745,47 @@ module Aws::ElasticTranscoder
|
|
2740
2745
|
# can grant permissions to a maximum of 30 users and/or predefined
|
2741
2746
|
# Amazon S3 groups.
|
2742
2747
|
#
|
2743
|
-
# * **GranteeType
|
2748
|
+
# * **GranteeType**: Specify the type of value that appears in the
|
2744
2749
|
# Grantee object:
|
2745
2750
|
#
|
2746
|
-
# * **Canonical
|
2751
|
+
# * **Canonical**: The value in the `Grantee` object is either the
|
2747
2752
|
# canonical user ID for an AWS account or an origin access identity
|
2748
2753
|
# for an Amazon CloudFront distribution.
|
2749
2754
|
#
|
2750
2755
|
# A canonical user ID is not the same as an AWS account number.
|
2751
2756
|
#
|
2752
|
-
# * **Email
|
2757
|
+
# * **Email**: The value in the `Grantee` object is the registered
|
2753
2758
|
# email address of an AWS account.
|
2754
2759
|
#
|
2755
|
-
# * **Group
|
2760
|
+
# * **Group**: The value in the `Grantee` object is one of the
|
2756
2761
|
# following predefined Amazon S3 groups: `AllUsers`,
|
2757
2762
|
# `AuthenticatedUsers`, or `LogDelivery`.
|
2758
2763
|
#
|
2759
|
-
# * **Grantee
|
2764
|
+
# * **Grantee**: The AWS user or group that you want to have access to
|
2760
2765
|
# thumbnail files. To identify the user or group, you can specify the
|
2761
2766
|
# canonical user ID for an AWS account, an origin access identity for
|
2762
2767
|
# a CloudFront distribution, the registered email address of an AWS
|
2763
2768
|
# account, or a predefined Amazon S3 group.
|
2764
2769
|
#
|
2765
|
-
# * **Access
|
2770
|
+
# * **Access**: The permission that you want to give to the AWS user
|
2766
2771
|
# that you specified in `Grantee`. Permissions are granted on the
|
2767
2772
|
# thumbnail files that Elastic Transcoder adds to the bucket. Valid
|
2768
2773
|
# values include:
|
2769
2774
|
#
|
2770
|
-
# * `READ
|
2775
|
+
# * `READ`: The grantee can read the thumbnails and metadata for
|
2771
2776
|
# objects that Elastic Transcoder adds to the Amazon S3 bucket.
|
2772
2777
|
#
|
2773
|
-
# * `READ_ACP
|
2778
|
+
# * `READ_ACP`: The grantee can read the object ACL for thumbnails
|
2774
2779
|
# that Elastic Transcoder adds to the Amazon S3 bucket.
|
2775
2780
|
#
|
2776
|
-
# * `WRITE_ACP
|
2777
|
-
#
|
2781
|
+
# * `WRITE_ACP`: The grantee can write the ACL for the thumbnails that
|
2782
|
+
# Elastic Transcoder adds to the Amazon S3 bucket.
|
2778
2783
|
#
|
2779
|
-
# * `FULL_CONTROL
|
2784
|
+
# * `FULL_CONTROL`: The grantee has `READ`, `READ_ACP`, and
|
2780
2785
|
# `WRITE_ACP` permissions for the thumbnails that Elastic Transcoder
|
2781
2786
|
# adds to the Amazon S3 bucket.
|
2782
2787
|
#
|
2783
|
-
# * **StorageClass
|
2788
|
+
# * **StorageClass**: The Amazon S3 storage class, `Standard` or
|
2784
2789
|
# `ReducedRedundancy`, that you want Elastic Transcoder to assign to
|
2785
2790
|
# the thumbnails that it stores in your Amazon S3 bucket.
|
2786
2791
|
#
|
@@ -2883,21 +2888,21 @@ module Aws::ElasticTranscoder
|
|
2883
2888
|
# To receive notifications, you must also subscribe to the new topic in
|
2884
2889
|
# the Amazon SNS console.
|
2885
2890
|
#
|
2886
|
-
# * **Progressing
|
2891
|
+
# * **Progressing**: The topic ARN for the Amazon Simple Notification
|
2887
2892
|
# Service (Amazon SNS) topic that you want to notify when Elastic
|
2888
2893
|
# Transcoder has started to process jobs that are added to this
|
2889
2894
|
# pipeline. This is the ARN that Amazon SNS returned when you created
|
2890
2895
|
# the topic.
|
2891
2896
|
#
|
2892
|
-
# * **Complete
|
2897
|
+
# * **Complete**: The topic ARN for the Amazon SNS topic that you want
|
2893
2898
|
# to notify when Elastic Transcoder has finished processing a job.
|
2894
2899
|
# This is the ARN that Amazon SNS returned when you created the topic.
|
2895
2900
|
#
|
2896
|
-
# * **Warning
|
2897
|
-
#
|
2898
|
-
#
|
2901
|
+
# * **Warning**: The topic ARN for the Amazon SNS topic that you want to
|
2902
|
+
# notify when Elastic Transcoder encounters a warning condition. This
|
2903
|
+
# is the ARN that Amazon SNS returned when you created the topic.
|
2899
2904
|
#
|
2900
|
-
# * **Error
|
2905
|
+
# * **Error**: The topic ARN for the Amazon SNS topic that you want to
|
2901
2906
|
# notify when Elastic Transcoder encounters an error condition. This
|
2902
2907
|
# is the ARN that Amazon SNS returned when you created the topic.
|
2903
2908
|
#
|
@@ -2968,9 +2973,9 @@ module Aws::ElasticTranscoder
|
|
2968
2973
|
# @option params [required, String] :status
|
2969
2974
|
# The desired status of the pipeline:
|
2970
2975
|
#
|
2971
|
-
# * `Active
|
2976
|
+
# * `Active`: The pipeline is processing jobs.
|
2972
2977
|
#
|
2973
|
-
# * `Paused
|
2978
|
+
# * `Paused`: The pipeline is not currently processing jobs.
|
2974
2979
|
#
|
2975
2980
|
# @return [Types::UpdatePipelineStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2976
2981
|
#
|
@@ -3032,7 +3037,7 @@ module Aws::ElasticTranscoder
|
|
3032
3037
|
params: params,
|
3033
3038
|
config: config)
|
3034
3039
|
context[:gem_name] = 'aws-sdk-elastictranscoder'
|
3035
|
-
context[:gem_version] = '1.
|
3040
|
+
context[:gem_version] = '1.41.0'
|
3036
3041
|
Seahorse::Client::Request.new(handlers, context)
|
3037
3042
|
end
|
3038
3043
|
|
@@ -9,104 +9,43 @@
|
|
9
9
|
|
10
10
|
module Aws::ElasticTranscoder
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
17
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
19
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
+
end
|
22
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
+
end
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
+
end
|
27
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://elastictranscoder-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
+
end
|
31
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
32
|
+
end
|
33
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
35
|
+
return Aws::Endpoints::Endpoint.new(url: "https://elastictranscoder-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
36
|
+
end
|
37
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
38
|
+
end
|
39
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://elastictranscoder.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
42
|
+
end
|
43
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
44
|
+
end
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://elastictranscoder.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
21
46
|
end
|
22
|
-
|
23
|
-
end
|
47
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
48
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
49
|
end
|
28
|
-
|
29
|
-
# @api private
|
30
|
-
RULES = <<-JSON
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL2VsYXN0aWN0cmFuc2NvZGVyLWZpcHMue1Jl
|
77
|
-
Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9Iiwi
|
78
|
-
cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
|
79
|
-
In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxT
|
80
|
-
dGFjayBhcmUgZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90
|
81
|
-
IHN1cHBvcnQgb25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29u
|
82
|
-
ZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVm
|
83
|
-
IjoiVXNlRklQUyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
|
84
|
-
ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0
|
85
|
-
cnVlLHsiZm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9u
|
86
|
-
UmVzdWx0In0sInN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJy
|
87
|
-
dWxlcyI6W3siY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMi
|
88
|
-
Olt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczov
|
89
|
-
L2VsYXN0aWN0cmFuc2NvZGVyLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJl
|
90
|
-
c3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9
|
91
|
-
fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVy
|
92
|
-
cm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2Vz
|
93
|
-
IG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0
|
94
|
-
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoi
|
95
|
-
VXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6
|
96
|
-
W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6
|
97
|
-
W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRp
|
98
|
-
b25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0
|
99
|
-
cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1
|
100
|
-
cmwiOiJodHRwczovL2VsYXN0aWN0cmFuc2NvZGVyLntSZWdpb259LntQYXJ0
|
101
|
-
aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMi
|
102
|
-
Ont9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25k
|
103
|
-
aXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQg
|
104
|
-
dGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0
|
105
|
-
eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7
|
106
|
-
InVybCI6Imh0dHBzOi8vZWxhc3RpY3RyYW5zY29kZXIue1JlZ2lvbn0ue1Bh
|
107
|
-
cnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhl
|
108
|
-
YWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
109
|
-
|
110
|
-
JSON
|
111
50
|
end
|
112
51
|
end
|