Class: Aws::AccessAnalyzer::Types::DynamodbStreamConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::DynamodbStreamConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-accessanalyzer/types.rb
Overview
The proposed access control configuration for a DynamoDB stream. You can propose a configuration for a new DynamoDB stream or an existing DynamoDB stream that you own by specifying the policy for the DynamoDB stream. For more information, see [PutResourcePolicy].
-
If the configuration is for an existing DynamoDB stream and you do not specify the DynamoDB policy, then the access preview uses the existing DynamoDB policy for the stream.
-
If the access preview is for a new resource and you do not specify the policy, then the access preview assumes a DynamoDB stream without a policy.
-
To propose deletion of an existing DynamoDB stream policy, you can specify an empty string for the DynamoDB policy.
[1]: docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_PutResourcePolicy.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#stream_policy ⇒ String
The proposed resource policy defining who can access or manage the DynamoDB stream.
Instance Attribute Details
#stream_policy ⇒ String
The proposed resource policy defining who can access or manage the DynamoDB stream.
1201 1202 1203 1204 1205 |
# File 'lib/aws-sdk-accessanalyzer/types.rb', line 1201 class DynamodbStreamConfiguration < Struct.new( :stream_policy) SENSITIVE = [] include Aws::Structure end |