interface CrossRegionS3RestoreSourcesAccessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ODB.CfnOdbNetworkPropsMixin.CrossRegionS3RestoreSourcesAccessProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsodb#CfnOdbNetworkPropsMixin_CrossRegionS3RestoreSourcesAccessProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.odb.CfnOdbNetworkPropsMixin.CrossRegionS3RestoreSourcesAccessProperty |
Python | aws_cdk.cfn_property_mixins.aws_odb.CfnOdbNetworkPropsMixin.CrossRegionS3RestoreSourcesAccessProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_odb » CfnOdbNetworkPropsMixin » CrossRegionS3RestoreSourcesAccessProperty |
The configuration access for the cross-Region Amazon S3 database restore source for the ODB network.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_odb as odb } from '@aws-cdk/cfn-property-mixins';
const crossRegionS3RestoreSourcesAccessProperty: odb.CfnOdbNetworkPropsMixin.CrossRegionS3RestoreSourcesAccessProperty = {
ipv4Addresses: ['ipv4Addresses'],
region: 'region',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| ipv4 | string[] | The IPv4 addresses allowed for cross-Region Amazon S3 restore access. |
| region? | string | The AWS-Region for cross-Region Amazon S3 restore access. |
| status? | string | The status of the managed resource access. |
ipv4Addresses?
Type:
string[]
(optional)
The IPv4 addresses allowed for cross-Region Amazon S3 restore access.
region?
Type:
string
(optional)
The AWS-Region for cross-Region Amazon S3 restore access.
status?
Type:
string
(optional)
The status of the managed resource access.

.NET
Go
Java
Python
TypeScript