aws-sdk-mediatailor 1.38.0 → 1.39.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f53b1de18cb14958e5282b0b02934c54c48ca6bf0121b118aaec63131bcca4b3
4
- data.tar.gz: 9fe01d9d6afb7603fdf1f1cd2a3b8d726890ccbdd3380673883727986c288333
3
+ metadata.gz: 63ee783da823a7c1746371e20efe6278b7ad8f2aaa6bb80c62dd869116f7b194
4
+ data.tar.gz: 765d838185cd965040120970701e54ca45a9c2c556bdbd12e9f31cb53bf18a9b
5
5
  SHA512:
6
- metadata.gz: 4ad621c45a32e66245a55ed806a75af7ab28c8e89ec2b5149dedd3597f80909b95d63e856a9608cb284ab0e2ebf2776532d6a4d1f5bf79d54190c9a1155f9988
7
- data.tar.gz: 34c8e372fdb06e33228b14f844defad28a4951c06ea8b99a6101898755d148affbd9220898d88e016cf684cf2547d2677e580b23d555634193120fe792e3ca5f
6
+ metadata.gz: ebd71ceeaf95fc25fa30a70603c073541915de41fcf35d3c1d83ef6f9f68100a6f3718fa0492d9b09e6925d562186b8949eb15fe22cf37a9024ebd51e162eff2
7
+ data.tar.gz: 32e0c020d1b11cd89c4eef4de35af58c808bda04819fbf1c27b9b858353127acda2f82dbe01456a6f5d365281843212db7a0855637a0e015ccfe54a08111a928
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.39.0 (2021-06-16)
5
+ ------------------
6
+
7
+ * Feature - Adds AWS Secrets Manager Access Token Authentication for Source Locations
8
+
4
9
  1.38.0 (2021-03-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.38.0
1
+ 1.39.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
48
48
  # @!group service
49
49
  module Aws::MediaTailor
50
50
 
51
- GEM_VERSION = '1.38.0'
51
+ GEM_VERSION = '1.39.0'
52
52
 
53
53
  end
@@ -525,7 +525,12 @@ module Aws::MediaTailor
525
525
  #
526
526
  # resp = client.create_source_location({
527
527
  # access_configuration: {
528
- # access_type: "S3_SIGV4", # accepts S3_SIGV4
528
+ # access_type: "S3_SIGV4", # accepts S3_SIGV4, SECRETS_MANAGER_ACCESS_TOKEN
529
+ # secrets_manager_access_token_configuration: {
530
+ # header_name: "__string",
531
+ # secret_arn: "__string",
532
+ # secret_string_key: "__string",
533
+ # },
529
534
  # },
530
535
  # default_segment_delivery_configuration: {
531
536
  # base_url: "__string",
@@ -541,7 +546,10 @@ module Aws::MediaTailor
541
546
  #
542
547
  # @example Response structure
543
548
  #
544
- # resp.access_configuration.access_type #=> String, one of "S3_SIGV4"
549
+ # resp.access_configuration.access_type #=> String, one of "S3_SIGV4", "SECRETS_MANAGER_ACCESS_TOKEN"
550
+ # resp.access_configuration.secrets_manager_access_token_configuration.header_name #=> String
551
+ # resp.access_configuration.secrets_manager_access_token_configuration.secret_arn #=> String
552
+ # resp.access_configuration.secrets_manager_access_token_configuration.secret_string_key #=> String
545
553
  # resp.arn #=> String
546
554
  # resp.creation_time #=> Time
547
555
  # resp.default_segment_delivery_configuration.base_url #=> String
@@ -877,7 +885,10 @@ module Aws::MediaTailor
877
885
  #
878
886
  # @example Response structure
879
887
  #
880
- # resp.access_configuration.access_type #=> String, one of "S3_SIGV4"
888
+ # resp.access_configuration.access_type #=> String, one of "S3_SIGV4", "SECRETS_MANAGER_ACCESS_TOKEN"
889
+ # resp.access_configuration.secrets_manager_access_token_configuration.header_name #=> String
890
+ # resp.access_configuration.secrets_manager_access_token_configuration.secret_arn #=> String
891
+ # resp.access_configuration.secrets_manager_access_token_configuration.secret_string_key #=> String
881
892
  # resp.arn #=> String
882
893
  # resp.creation_time #=> Time
883
894
  # resp.default_segment_delivery_configuration.base_url #=> String
@@ -1227,7 +1238,10 @@ module Aws::MediaTailor
1227
1238
  # @example Response structure
1228
1239
  #
1229
1240
  # resp.items #=> Array
1230
- # resp.items[0].access_configuration.access_type #=> String, one of "S3_SIGV4"
1241
+ # resp.items[0].access_configuration.access_type #=> String, one of "S3_SIGV4", "SECRETS_MANAGER_ACCESS_TOKEN"
1242
+ # resp.items[0].access_configuration.secrets_manager_access_token_configuration.header_name #=> String
1243
+ # resp.items[0].access_configuration.secrets_manager_access_token_configuration.secret_arn #=> String
1244
+ # resp.items[0].access_configuration.secrets_manager_access_token_configuration.secret_string_key #=> String
1231
1245
  # resp.items[0].arn #=> String
1232
1246
  # resp.items[0].creation_time #=> Time
1233
1247
  # resp.items[0].default_segment_delivery_configuration.base_url #=> String
@@ -1734,7 +1748,12 @@ module Aws::MediaTailor
1734
1748
  #
1735
1749
  # resp = client.update_source_location({
1736
1750
  # access_configuration: {
1737
- # access_type: "S3_SIGV4", # accepts S3_SIGV4
1751
+ # access_type: "S3_SIGV4", # accepts S3_SIGV4, SECRETS_MANAGER_ACCESS_TOKEN
1752
+ # secrets_manager_access_token_configuration: {
1753
+ # header_name: "__string",
1754
+ # secret_arn: "__string",
1755
+ # secret_string_key: "__string",
1756
+ # },
1738
1757
  # },
1739
1758
  # default_segment_delivery_configuration: {
1740
1759
  # base_url: "__string",
@@ -1747,7 +1766,10 @@ module Aws::MediaTailor
1747
1766
  #
1748
1767
  # @example Response structure
1749
1768
  #
1750
- # resp.access_configuration.access_type #=> String, one of "S3_SIGV4"
1769
+ # resp.access_configuration.access_type #=> String, one of "S3_SIGV4", "SECRETS_MANAGER_ACCESS_TOKEN"
1770
+ # resp.access_configuration.secrets_manager_access_token_configuration.header_name #=> String
1771
+ # resp.access_configuration.secrets_manager_access_token_configuration.secret_arn #=> String
1772
+ # resp.access_configuration.secrets_manager_access_token_configuration.secret_string_key #=> String
1751
1773
  # resp.arn #=> String
1752
1774
  # resp.creation_time #=> Time
1753
1775
  # resp.default_segment_delivery_configuration.base_url #=> String
@@ -1836,7 +1858,7 @@ module Aws::MediaTailor
1836
1858
  params: params,
1837
1859
  config: config)
1838
1860
  context[:gem_name] = 'aws-sdk-mediatailor'
1839
- context[:gem_version] = '1.38.0'
1861
+ context[:gem_version] = '1.39.0'
1840
1862
  Seahorse::Client::Request.new(handlers, context)
1841
1863
  end
1842
1864
 
@@ -97,6 +97,7 @@ module Aws::MediaTailor
97
97
  ResponseOutputs = Shapes::ListShape.new(name: 'ResponseOutputs')
98
98
  ScheduleConfiguration = Shapes::StructureShape.new(name: 'ScheduleConfiguration')
99
99
  ScheduleEntry = Shapes::StructureShape.new(name: 'ScheduleEntry')
100
+ SecretsManagerAccessTokenConfiguration = Shapes::StructureShape.new(name: 'SecretsManagerAccessTokenConfiguration')
100
101
  SlateSource = Shapes::StructureShape.new(name: 'SlateSource')
101
102
  SourceLocation = Shapes::StructureShape.new(name: 'SourceLocation')
102
103
  SpliceInsertMessage = Shapes::StructureShape.new(name: 'SpliceInsertMessage')
@@ -131,6 +132,7 @@ module Aws::MediaTailor
131
132
  __timestampUnix = Shapes::TimestampShape.new(name: '__timestampUnix', timestampFormat: "unixTimestamp")
132
133
 
133
134
  AccessConfiguration.add_member(:access_type, Shapes::ShapeRef.new(shape: AccessType, location_name: "AccessType"))
135
+ AccessConfiguration.add_member(:secrets_manager_access_token_configuration, Shapes::ShapeRef.new(shape: SecretsManagerAccessTokenConfiguration, location_name: "SecretsManagerAccessTokenConfiguration"))
134
136
  AccessConfiguration.struct_class = Types::AccessConfiguration
135
137
 
136
138
  AdBreak.add_member(:message_type, Shapes::ShapeRef.new(shape: MessageType, location_name: "MessageType"))
@@ -532,6 +534,11 @@ module Aws::MediaTailor
532
534
  ScheduleEntry.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "VodSourceName"))
533
535
  ScheduleEntry.struct_class = Types::ScheduleEntry
534
536
 
537
+ SecretsManagerAccessTokenConfiguration.add_member(:header_name, Shapes::ShapeRef.new(shape: __string, location_name: "HeaderName"))
538
+ SecretsManagerAccessTokenConfiguration.add_member(:secret_arn, Shapes::ShapeRef.new(shape: __string, location_name: "SecretArn"))
539
+ SecretsManagerAccessTokenConfiguration.add_member(:secret_string_key, Shapes::ShapeRef.new(shape: __string, location_name: "SecretStringKey"))
540
+ SecretsManagerAccessTokenConfiguration.struct_class = Types::SecretsManagerAccessTokenConfiguration
541
+
535
542
  SlateSource.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
536
543
  SlateSource.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, location_name: "VodSourceName"))
537
544
  SlateSource.struct_class = Types::SlateSource
@@ -16,7 +16,12 @@ module Aws::MediaTailor
16
16
  # data as a hash:
17
17
  #
18
18
  # {
19
- # access_type: "S3_SIGV4", # accepts S3_SIGV4
19
+ # access_type: "S3_SIGV4", # accepts S3_SIGV4, SECRETS_MANAGER_ACCESS_TOKEN
20
+ # secrets_manager_access_token_configuration: {
21
+ # header_name: "__string",
22
+ # secret_arn: "__string",
23
+ # secret_string_key: "__string",
24
+ # },
20
25
  # }
21
26
  #
22
27
  # @!attribute [rw] access_type
@@ -48,10 +53,15 @@ module Aws::MediaTailor
48
53
  # VodSource packaging configurations.
49
54
  # @return [String]
50
55
  #
56
+ # @!attribute [rw] secrets_manager_access_token_configuration
57
+ # AWS Secrets Manager access token configuration parameters.
58
+ # @return [Types::SecretsManagerAccessTokenConfiguration]
59
+ #
51
60
  # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/AccessConfiguration AWS API Documentation
52
61
  #
53
62
  class AccessConfiguration < Struct.new(
54
- :access_type)
63
+ :access_type,
64
+ :secrets_manager_access_token_configuration)
55
65
  SENSITIVE = []
56
66
  include Aws::Structure
57
67
  end
@@ -522,7 +532,12 @@ module Aws::MediaTailor
522
532
  #
523
533
  # {
524
534
  # access_configuration: {
525
- # access_type: "S3_SIGV4", # accepts S3_SIGV4
535
+ # access_type: "S3_SIGV4", # accepts S3_SIGV4, SECRETS_MANAGER_ACCESS_TOKEN
536
+ # secrets_manager_access_token_configuration: {
537
+ # header_name: "__string",
538
+ # secret_arn: "__string",
539
+ # secret_string_key: "__string",
540
+ # },
526
541
  # },
527
542
  # default_segment_delivery_configuration: {
528
543
  # base_url: "__string",
@@ -2514,6 +2529,53 @@ module Aws::MediaTailor
2514
2529
  include Aws::Structure
2515
2530
  end
2516
2531
 
2532
+ # AWS Secrets Manager access token configuration parameters. For
2533
+ # information about Secrets Manager access token authentication, see
2534
+ # [Working with AWS Secrets Manager access token authentication][1].
2535
+ #
2536
+ #
2537
+ #
2538
+ # [1]: https://docs.aws.amazon.com/mediatailor/latest/ug/channel-assembly-access-configuration-access-token.html
2539
+ #
2540
+ # @note When making an API call, you may pass SecretsManagerAccessTokenConfiguration
2541
+ # data as a hash:
2542
+ #
2543
+ # {
2544
+ # header_name: "__string",
2545
+ # secret_arn: "__string",
2546
+ # secret_string_key: "__string",
2547
+ # }
2548
+ #
2549
+ # @!attribute [rw] header_name
2550
+ # The name of the HTTP header used to supply the access token in
2551
+ # requests to the source location.
2552
+ # @return [String]
2553
+ #
2554
+ # @!attribute [rw] secret_arn
2555
+ # The Amazon Resource Name (ARN) of the AWS Secrets Manager secret
2556
+ # that contains the access token.
2557
+ # @return [String]
2558
+ #
2559
+ # @!attribute [rw] secret_string_key
2560
+ # The AWS Secrets Manager [SecretString][1] key associated with the
2561
+ # access token. MediaTailor uses the key to look up SecretString key
2562
+ # and value pair containing the access token.
2563
+ #
2564
+ #
2565
+ #
2566
+ # [1]: https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_CreateSecret.html#SecretsManager-CreateSecret-request-SecretString.html
2567
+ # @return [String]
2568
+ #
2569
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/SecretsManagerAccessTokenConfiguration AWS API Documentation
2570
+ #
2571
+ class SecretsManagerAccessTokenConfiguration < Struct.new(
2572
+ :header_name,
2573
+ :secret_arn,
2574
+ :secret_string_key)
2575
+ SENSITIVE = []
2576
+ include Aws::Structure
2577
+ end
2578
+
2517
2579
  # Slate VOD source configuration.
2518
2580
  #
2519
2581
  # @note When making an API call, you may pass SlateSource
@@ -2855,7 +2917,12 @@ module Aws::MediaTailor
2855
2917
  #
2856
2918
  # {
2857
2919
  # access_configuration: {
2858
- # access_type: "S3_SIGV4", # accepts S3_SIGV4
2920
+ # access_type: "S3_SIGV4", # accepts S3_SIGV4, SECRETS_MANAGER_ACCESS_TOKEN
2921
+ # secrets_manager_access_token_configuration: {
2922
+ # header_name: "__string",
2923
+ # secret_arn: "__string",
2924
+ # secret_string_key: "__string",
2925
+ # },
2859
2926
  # },
2860
2927
  # default_segment_delivery_configuration: {
2861
2928
  # base_url: "__string",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediatailor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.38.0
4
+ version: 1.39.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-16 00:00:00.000000000 Z
11
+ date: 2021-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-mediatailor
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-mediatailor/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mediatailor
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mediatailor/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths:
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubyforge_project:
87
- rubygems_version: 2.7.6.2
86
+ rubygems_version: 3.1.6
88
87
  signing_key:
89
88
  specification_version: 4
90
89
  summary: AWS SDK for Ruby - MediaTailor