aws-sdk-s3control 1.127.0 → 1.128.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: bc548dda782de38b19cf1707b7c654a87319983acee4ed49d0990be751f0d83e
4
- data.tar.gz: 9688f2d32285b1854d7c29d5b444c07eb98bb194c86d381fad8e3d29a60912c6
3
+ metadata.gz: 6041ca09b6619678d48052e9aa2ee2d56c72323858cd65170d10ec415c856f37
4
+ data.tar.gz: b4998328b7e801789250eb9a0f3884d2421809512fa254359e233eb89cbd0450
5
5
  SHA512:
6
- metadata.gz: bef3d5363ed2f7f6f1b6aece846219d6cdfba4f587bbf89ba12223db7f39093d811d15ecd5e548b3db6d0661284ed36969ccdc1364cad587f2d92491632d7a53
7
- data.tar.gz: 24f5dc5455d062f753a19ae2f6269c8a17d7d4a8d382a40ed63691614093b9ad85af905bd7ee7a07567bbce3de8b5fbd6a2ddd30bb18e1c562bf6848a68bcd9b
6
+ metadata.gz: 737444d023b8f43ff18ae1a5348b53e416606005831d5a2756d1394f0e54a1a5fef13b5259aab851bb55ac098757c2613ec6056e9093349d528a3a8d602ed41c
7
+ data.tar.gz: 323dca1d180ada5f836dc325ee5644b27dafa760c002a567b01d3f134eaebfd00500f17ff582b23855d6a3ddd1f9261d7c7c1f5665f8373b99c55c45511c1330
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.128.0 (2026-03-31)
5
+ ------------------
6
+
7
+ * Feature - Adding an optional auditContext parameter to S3 Access Grants credential vending API GetDataAccess to enable job-level audit correlation in S3 CloudTrail logs
8
+
4
9
  1.127.0 (2026-03-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.127.0
1
+ 1.128.0
@@ -4549,6 +4549,11 @@ module Aws::S3Control
4549
4549
  # object. Do not pass this value if the target data is a bucket or a
4550
4550
  # bucket and a prefix.
4551
4551
  #
4552
+ # @option params [String] :audit_context
4553
+ # The context to identify the job or query associated with the
4554
+ # credential request. This information will be displayed in CloudTrail
4555
+ # log in your account.
4556
+ #
4552
4557
  # @return [Types::GetDataAccessResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4553
4558
  #
4554
4559
  # * {Types::GetDataAccessResult#credentials #credentials} => Types::Credentials
@@ -4564,6 +4569,7 @@ module Aws::S3Control
4564
4569
  # duration_seconds: 1,
4565
4570
  # privilege: "Minimal", # accepts Minimal, Default
4566
4571
  # target_type: "Object", # accepts Object
4572
+ # audit_context: "AuditContext",
4567
4573
  # })
4568
4574
  #
4569
4575
  # @example Response structure
@@ -8214,7 +8220,7 @@ module Aws::S3Control
8214
8220
  tracer: tracer
8215
8221
  )
8216
8222
  context[:gem_name] = 'aws-sdk-s3control'
8217
- context[:gem_version] = '1.127.0'
8223
+ context[:gem_version] = '1.128.0'
8218
8224
  Seahorse::Client::Request.new(handlers, context)
8219
8225
  end
8220
8226
 
@@ -47,6 +47,7 @@ module Aws::S3Control
47
47
  AsyncRequestStatus = Shapes::StringShape.new(name: 'AsyncRequestStatus')
48
48
  AsyncRequestTokenARN = Shapes::StringShape.new(name: 'AsyncRequestTokenARN')
49
49
  AsyncResponseDetails = Shapes::StructureShape.new(name: 'AsyncResponseDetails')
50
+ AuditContext = Shapes::StringShape.new(name: 'AuditContext')
50
51
  AwsLambdaTransformation = Shapes::StructureShape.new(name: 'AwsLambdaTransformation')
51
52
  AwsLambdaTransformationPayload = Shapes::StringShape.new(name: 'AwsLambdaTransformationPayload')
52
53
  AwsOrgArn = Shapes::StringShape.new(name: 'AwsOrgArn')
@@ -1107,6 +1108,7 @@ module Aws::S3Control
1107
1108
  GetDataAccessRequest.add_member(:duration_seconds, Shapes::ShapeRef.new(shape: DurationSeconds, location: "querystring", location_name: "durationSeconds"))
1108
1109
  GetDataAccessRequest.add_member(:privilege, Shapes::ShapeRef.new(shape: Privilege, location: "querystring", location_name: "privilege"))
1109
1110
  GetDataAccessRequest.add_member(:target_type, Shapes::ShapeRef.new(shape: S3PrefixType, location: "querystring", location_name: "targetType"))
1111
+ GetDataAccessRequest.add_member(:audit_context, Shapes::ShapeRef.new(shape: AuditContext, location: "querystring", location_name: "auditContext"))
1110
1112
  GetDataAccessRequest.struct_class = Types::GetDataAccessRequest
1111
1113
 
1112
1114
  GetDataAccessResult.add_member(:credentials, Shapes::ShapeRef.new(shape: Credentials, location_name: "Credentials"))
@@ -3310,6 +3310,12 @@ module Aws::S3Control
3310
3310
  # a bucket and a prefix.
3311
3311
  # @return [String]
3312
3312
  #
3313
+ # @!attribute [rw] audit_context
3314
+ # The context to identify the job or query associated with the
3315
+ # credential request. This information will be displayed in CloudTrail
3316
+ # log in your account.
3317
+ # @return [String]
3318
+ #
3313
3319
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/GetDataAccessRequest AWS API Documentation
3314
3320
  #
3315
3321
  class GetDataAccessRequest < Struct.new(
@@ -3318,7 +3324,8 @@ module Aws::S3Control
3318
3324
  :permission,
3319
3325
  :duration_seconds,
3320
3326
  :privilege,
3321
- :target_type)
3327
+ :target_type,
3328
+ :audit_context)
3322
3329
  SENSITIVE = []
3323
3330
  include Aws::Structure
3324
3331
  end
@@ -54,7 +54,7 @@ module Aws::S3Control
54
54
  autoload :EndpointProvider, 'aws-sdk-s3control/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-s3control/endpoints'
56
56
 
57
- GEM_VERSION = '1.127.0'
57
+ GEM_VERSION = '1.128.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -984,7 +984,8 @@ module Aws
984
984
  permission: ("READ" | "WRITE" | "READWRITE"),
985
985
  ?duration_seconds: ::Integer,
986
986
  ?privilege: ("Minimal" | "Default"),
987
- ?target_type: ("Object")
987
+ ?target_type: ("Object"),
988
+ ?audit_context: ::String
988
989
  ) -> _GetDataAccessResponseSuccess
989
990
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataAccessResponseSuccess
990
991
 
data/sig/types.rbs CHANGED
@@ -770,6 +770,7 @@ module Aws::S3Control
770
770
  attr_accessor duration_seconds: ::Integer
771
771
  attr_accessor privilege: ("Minimal" | "Default")
772
772
  attr_accessor target_type: ("Object")
773
+ attr_accessor audit_context: ::String
773
774
  SENSITIVE: []
774
775
  end
775
776
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3control
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.127.0
4
+ version: 1.128.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services