Class: Aws::AccessAnalyzer::Types::S3AccessPointConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::S3AccessPointConfiguration
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
The configuration for an Amazon S3 access point or multi-region access point for the bucket. You can propose up to 10 access points or multi-region access points per bucket. If the proposed Amazon S3 access point configuration is for an existing bucket, the access preview uses the proposed access point configuration in place of the existing access points. To propose an access point without a policy, you can provide an empty string as the access point policy. For more information, see Creating access points. For more information about access point policy limits, see Access points restrictions and limitations.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_point_policy ⇒ String
The access point or multi-region access point policy.
-
#network_origin ⇒ Types::NetworkOriginConfiguration
The proposed
Internet
andVpcConfiguration
to apply to this Amazon S3 access point. -
#public_access_block ⇒ Types::S3PublicAccessBlockConfiguration
The proposed
S3PublicAccessBlock
configuration to apply to this Amazon S3 access point or multi-region access point.
Instance Attribute Details
#access_point_policy ⇒ String
The access point or multi-region access point policy.
3525 3526 3527 3528 3529 3530 3531 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3525 class S3AccessPointConfiguration < Struct.new( :access_point_policy, :public_access_block, :network_origin) SENSITIVE = [] include Aws::Structure end |
#network_origin ⇒ Types::NetworkOriginConfiguration
The proposed Internet
and VpcConfiguration
to apply to this
Amazon S3 access point. VpcConfiguration
does not apply to
multi-region access points. If the access preview is for a new
resource and neither is specified, the access preview uses
Internet
for the network origin. If the access preview is for an
existing resource and neither is specified, the access preview uses
the exiting network origin.
3525 3526 3527 3528 3529 3530 3531 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3525 class S3AccessPointConfiguration < Struct.new( :access_point_policy, :public_access_block, :network_origin) SENSITIVE = [] include Aws::Structure end |
#public_access_block ⇒ Types::S3PublicAccessBlockConfiguration
The proposed S3PublicAccessBlock
configuration to apply to this
Amazon S3 access point or multi-region access point.
3525 3526 3527 3528 3529 3530 3531 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 3525 class S3AccessPointConfiguration < Struct.new( :access_point_policy, :public_access_block, :network_origin) SENSITIVE = [] include Aws::Structure end |