interface ManagedServicesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_odb.CfnOdbNetwork.ManagedServicesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsodb#CfnOdbNetwork_ManagedServicesProperty |
Java | software.amazon.awscdk.services.odb.CfnOdbNetwork.ManagedServicesProperty |
Python | aws_cdk.aws_odb.CfnOdbNetwork.ManagedServicesProperty |
TypeScript | aws-cdk-lib » aws_odb » CfnOdbNetwork » ManagedServicesProperty |
The managed services configuration 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-lib';
const managedServicesProperty: odb.CfnOdbNetwork.ManagedServicesProperty = {
managedS3BackupAccess: {
ipv4Addresses: ['ipv4Addresses'],
status: 'status',
},
managedServicesIpv4Cidrs: ['managedServicesIpv4Cidrs'],
resourceGatewayArn: 'resourceGatewayArn',
s3Access: {
domainName: 'domainName',
ipv4Addresses: ['ipv4Addresses'],
s3PolicyDocument: 's3PolicyDocument',
status: 'status',
},
serviceNetworkArn: 'serviceNetworkArn',
serviceNetworkEndpoint: {
vpcEndpointId: 'vpcEndpointId',
vpcEndpointType: 'vpcEndpointType',
},
zeroEtlAccess: {
cidr: 'cidr',
status: 'status',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| managed | IResolvable | Managed | The managed Amazon S3 backup access configuration. |
| managed | string[] | The IPv4 CIDR blocks for the managed services. |
| resource | string | The Amazon Resource Name (ARN) of the resource gateway. |
| s3 | IResolvable | S3 | The Amazon S3 access configuration. |
| service | string | The Amazon Resource Name (ARN) of the service network. |
| service | IResolvable | Service | The service network endpoint configuration. |
| zero | IResolvable | Zero | The Zero-ETL access configuration. |
managedS3BackupAccess?
Type:
IResolvable | Managed
(optional)
The managed Amazon S3 backup access configuration.
managedServicesIpv4Cidrs?
Type:
string[]
(optional)
The IPv4 CIDR blocks for the managed services.
resourceGatewayArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the resource gateway.
s3Access?
Type:
IResolvable | S3
(optional)
The Amazon S3 access configuration.
serviceNetworkArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the service network.
serviceNetworkEndpoint?
Type:
IResolvable | Service
(optional)
The service network endpoint configuration.
zeroEtlAccess?
Type:
IResolvable | Zero
(optional)
The Zero-ETL access configuration.

.NET
Go
Java
Python
TypeScript