aws-sdk-bcmdataexports 1.33.0 → 1.34.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa017366270bc283c34529db33d52b2bd8a1ed0bd968d891fbf83a9442776824
4
- data.tar.gz: eb291dbaf18660f8005d7ef0027bcaae2cf85f0b518f11d861f64031947c0525
3
+ metadata.gz: 3e5e65f59c0016c05104fb041b4991a947307862e12447728d38ed7d672ca12d
4
+ data.tar.gz: 90fca744edbeb7a02a83bc0bca306cb52dfd52dd09741c80f3030a563245e0d9
5
5
  SHA512:
6
- metadata.gz: 5a2bd32db8f9151e67ef810637fa7db1a6a36442ad27acb73ef4152d8b810a7af43cf59715995d01fe4ac8b566aaa36ad08a3c0ea3263ef6b71c159afe5181bd
7
- data.tar.gz: 0432aae763f8648577df2a5f9b46ed52a40ec543b549fe0dde16355c5f7e8253b882dcd435099777ae96ecdbb220bb66499cc32cf7f06991704a31ce98aa63f1
6
+ metadata.gz: 5aed827961b50380ea31d7895ef98662bd51da46bd456c23b4f5207a3f56a844f3ab52063bfe482317ac8bcb9d0bffb3a403bf69e2b5ddafb2c004a015901e3e
7
+ data.tar.gz: d9fbe11dbe721f47716317cff05067b22aefe4b6875eb64cbb88e7503b5409c91a5e0c9268fcf3bb078c70351d46df22d51ddbd595eebd0c18e0b5ace5e26a2e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.0 (2026-03-26)
5
+ ------------------
6
+
7
+ * Feature - With this release we are providing an option to accounts to have their export delivered to an S3 bucket that is not owned by the account.
8
+
4
9
  1.33.0 (2026-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.34.0
@@ -542,6 +542,7 @@ module Aws::BCMDataExports
542
542
  # destination_configurations: { # required
543
543
  # s3_destination: { # required
544
544
  # s3_bucket: "GenericString", # required
545
+ # s3_bucket_owner: "AccountId",
545
546
  # s3_prefix: "GenericString", # required
546
547
  # s3_region: "GenericString", # required
547
548
  # s3_output_configurations: { # required
@@ -638,6 +639,7 @@ module Aws::BCMDataExports
638
639
  # resp.export.data_query.table_configurations["TableName"] #=> Hash
639
640
  # resp.export.data_query.table_configurations["TableName"]["TableProperty"] #=> String
640
641
  # resp.export.destination_configurations.s3_destination.s3_bucket #=> String
642
+ # resp.export.destination_configurations.s3_destination.s3_bucket_owner #=> String
641
643
  # resp.export.destination_configurations.s3_destination.s3_prefix #=> String
642
644
  # resp.export.destination_configurations.s3_destination.s3_region #=> String
643
645
  # resp.export.destination_configurations.s3_destination.s3_output_configurations.output_type #=> String, one of "CUSTOM"
@@ -686,6 +688,7 @@ module Aws::BCMDataExports
686
688
  # resp.export.data_query.table_configurations["TableName"] #=> Hash
687
689
  # resp.export.data_query.table_configurations["TableName"]["TableProperty"] #=> String
688
690
  # resp.export.destination_configurations.s3_destination.s3_bucket #=> String
691
+ # resp.export.destination_configurations.s3_destination.s3_bucket_owner #=> String
689
692
  # resp.export.destination_configurations.s3_destination.s3_prefix #=> String
690
693
  # resp.export.destination_configurations.s3_destination.s3_region #=> String
691
694
  # resp.export.destination_configurations.s3_destination.s3_output_configurations.output_type #=> String, one of "CUSTOM"
@@ -1021,6 +1024,7 @@ module Aws::BCMDataExports
1021
1024
  # destination_configurations: { # required
1022
1025
  # s3_destination: { # required
1023
1026
  # s3_bucket: "GenericString", # required
1027
+ # s3_bucket_owner: "AccountId",
1024
1028
  # s3_prefix: "GenericString", # required
1025
1029
  # s3_region: "GenericString", # required
1026
1030
  # s3_output_configurations: { # required
@@ -1068,7 +1072,7 @@ module Aws::BCMDataExports
1068
1072
  tracer: tracer
1069
1073
  )
1070
1074
  context[:gem_name] = 'aws-sdk-bcmdataexports'
1071
- context[:gem_version] = '1.33.0'
1075
+ context[:gem_version] = '1.34.0'
1072
1076
  Seahorse::Client::Request.new(handlers, context)
1073
1077
  end
1074
1078
 
@@ -15,6 +15,7 @@ module Aws::BCMDataExports
15
15
  include Seahorse::Model
16
16
 
17
17
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
18
+ AccountId = Shapes::StringShape.new(name: 'AccountId')
18
19
  Arn = Shapes::StringShape.new(name: 'Arn')
19
20
  Column = Shapes::StructureShape.new(name: 'Column')
20
21
  ColumnList = Shapes::ListShape.new(name: 'ColumnList')
@@ -239,6 +240,7 @@ module Aws::BCMDataExports
239
240
  ResourceTagList.member = Shapes::ShapeRef.new(shape: ResourceTag)
240
241
 
241
242
  S3Destination.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: GenericString, required: true, location_name: "S3Bucket"))
243
+ S3Destination.add_member(:s3_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location_name: "S3BucketOwner"))
242
244
  S3Destination.add_member(:s3_prefix, Shapes::ShapeRef.new(shape: GenericString, required: true, location_name: "S3Prefix"))
243
245
  S3Destination.add_member(:s3_region, Shapes::ShapeRef.new(shape: GenericString, required: true, location_name: "S3Region"))
244
246
  S3Destination.add_member(:s3_output_configurations, Shapes::ShapeRef.new(shape: S3OutputConfigurations, required: true, location_name: "S3OutputConfigurations"))
@@ -642,6 +642,11 @@ module Aws::BCMDataExports
642
642
  # export file.
643
643
  # @return [String]
644
644
  #
645
+ # @!attribute [rw] s3_bucket_owner
646
+ # The AWS Account ID that owns the S3 bucket used as the destination
647
+ # for the data export.
648
+ # @return [String]
649
+ #
645
650
  # @!attribute [rw] s3_prefix
646
651
  # The S3 path prefix you want prepended to the name of your data
647
652
  # export.
@@ -659,6 +664,7 @@ module Aws::BCMDataExports
659
664
  #
660
665
  class S3Destination < Struct.new(
661
666
  :s3_bucket,
667
+ :s3_bucket_owner,
662
668
  :s3_prefix,
663
669
  :s3_region,
664
670
  :s3_output_configurations)
@@ -54,7 +54,7 @@ module Aws::BCMDataExports
54
54
  autoload :EndpointProvider, 'aws-sdk-bcmdataexports/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-bcmdataexports/endpoints'
56
56
 
57
- GEM_VERSION = '1.33.0'
57
+ GEM_VERSION = '1.34.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -96,6 +96,7 @@ module Aws
96
96
  destination_configurations: {
97
97
  s3_destination: {
98
98
  s3_bucket: ::String,
99
+ s3_bucket_owner: ::String?,
99
100
  s3_prefix: ::String,
100
101
  s3_region: ::String,
101
102
  s3_output_configurations: {
@@ -260,6 +261,7 @@ module Aws
260
261
  destination_configurations: {
261
262
  s3_destination: {
262
263
  s3_bucket: ::String,
264
+ s3_bucket_owner: ::String?,
263
265
  s3_prefix: ::String,
264
266
  s3_region: ::String,
265
267
  s3_output_configurations: {
data/sig/types.rbs CHANGED
@@ -206,6 +206,7 @@ module Aws::BCMDataExports
206
206
 
207
207
  class S3Destination
208
208
  attr_accessor s3_bucket: ::String
209
+ attr_accessor s3_bucket_owner: ::String
209
210
  attr_accessor s3_prefix: ::String
210
211
  attr_accessor s3_region: ::String
211
212
  attr_accessor s3_output_configurations: Types::S3OutputConfigurations
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bcmdataexports
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.33.0
4
+ version: 1.34.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services