interface CfnSnapshotBlockPublicAccessProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EC2.CfnSnapshotBlockPublicAccessProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnSnapshotBlockPublicAccessProps |
Java | software.amazon.awscdk.services.ec2.CfnSnapshotBlockPublicAccessProps |
Python | aws_cdk.aws_ec2.CfnSnapshotBlockPublicAccessProps |
TypeScript | aws-cdk-lib » aws_ec2 » CfnSnapshotBlockPublicAccessProps |
Properties for defining a CfnSnapshotBlockPublicAccess
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const cfnSnapshotBlockPublicAccessProps: ec2.CfnSnapshotBlockPublicAccessProps = {
state: 'state',
};
Properties
Name | Type | Description |
---|---|---|
state | string | The mode in which to enable block public access for snapshots for the Region. |
state
Type:
string
The mode in which to enable block public access for snapshots for the Region.
Specify one of the following values:
block-all-sharing
- Prevents all public sharing of snapshots in the Region. Users in the account will no longer be able to request new public sharing. Additionally, snapshots that are already publicly shared are treated as private and they are no longer publicly available.
If you enable block public access for snapshots in
block-all-sharing
mode, it does not change the permissions for snapshots that are already publicly shared. Instead, it prevents these snapshots from be publicly visible and publicly accessible. Therefore, the attributes for these snapshots still indicate that they are publicly shared, even though they are not publicly available.
block-new-sharing
- Prevents only new public sharing of snapshots in the Region. Users in the account will no longer be able to request new public sharing. However, snapshots that are already publicly shared, remain publicly available.