interface S3AccessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ODB.Mixins.CfnOdbNetworkPropsMixin.S3AccessProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsodb/mixins#CfnOdbNetworkPropsMixin_S3AccessProperty |
Java | software.amazon.awscdk.mixins.preview.services.odb.mixins.CfnOdbNetworkPropsMixin.S3AccessProperty |
Python | aws_cdk.mixins_preview.aws_odb.mixins.CfnOdbNetworkPropsMixin.S3AccessProperty |
TypeScript | @aws-cdk/mixins-preview » aws_odb » mixins » CfnOdbNetworkPropsMixin » S3AccessProperty |
The configuration for Amazon S3 access from the ODB network.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as odb_mixins } from '@aws-cdk/mixins-preview/aws-odb';
const s3AccessProperty: odb_mixins.CfnOdbNetworkPropsMixin.S3AccessProperty = {
domainName: 'domainName',
ipv4Addresses: ['ipv4Addresses'],
s3PolicyDocument: 's3PolicyDocument',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The domain name for the Amazon S3 access. |
| ipv4 | string[] | The IPv4 addresses for the Amazon S3 access. |
| s3 | string | The endpoint policy for the Amazon S3 access. |
| status? | string | The status of the Amazon S3 access. |
domainName?
Type:
string
(optional)
The domain name for the Amazon S3 access.
ipv4Addresses?
Type:
string[]
(optional)
The IPv4 addresses for the Amazon S3 access.
s3PolicyDocument?
Type:
string
(optional)
The endpoint policy for the Amazon S3 access.
status?
Type:
string
(optional)
The status of the Amazon S3 access.

.NET
Go
Java
Python
TypeScript