interface ManagedS3BackupAccessProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ODB.CfnOdbNetwork.ManagedS3BackupAccessProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsodb#CfnOdbNetwork_ManagedS3BackupAccessProperty |
Java | software.amazon.awscdk.services.odb.CfnOdbNetwork.ManagedS3BackupAccessProperty |
Python | aws_cdk.aws_odb.CfnOdbNetwork.ManagedS3BackupAccessProperty |
TypeScript | aws-cdk-lib » aws_odb » CfnOdbNetwork » ManagedS3BackupAccessProperty |
The configuration for managed Amazon S3 backup 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 { aws_odb as odb } from 'aws-cdk-lib';
const managedS3BackupAccessProperty: odb.CfnOdbNetwork.ManagedS3BackupAccessProperty = {
ipv4Addresses: ['ipv4Addresses'],
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| ipv4 | string[] | The IPv4 addresses for the managed Amazon S3 backup access. |
| status? | string | The status of the managed Amazon S3 backup access. |
ipv4Addresses?
Type:
string[]
(optional)
The IPv4 addresses for the managed Amazon S3 backup access.
status?
Type:
string
(optional)
The status of the managed Amazon S3 backup access.

.NET
Go
Java
Python
TypeScript