interface ServiceManagedModeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnPrivateConnection.ServiceManagedModeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnPrivateConnection_ServiceManagedModeProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnPrivateConnection.ServiceManagedModeProperty |
Python | aws_cdk.aws_devopsagent.CfnPrivateConnection.ServiceManagedModeProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnPrivateConnection » ServiceManagedModeProperty |
Configuration for a service-managed Private Connection.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from 'aws-cdk-lib';
const serviceManagedModeProperty: devopsagent.CfnPrivateConnection.ServiceManagedModeProperty = {
hostAddress: 'hostAddress',
vpcId: 'vpcId',
// the properties below are optional
ipAddressType: 'ipAddressType',
ipv4AddressesPerEni: 123,
portRanges: ['portRanges'],
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| host | string | IP address or DNS name of the target resource. |
| vpc | string | VPC to create the service-managed Resource Gateway in. |
| ip | string | IP address type of the service-managed Resource Gateway. |
| ipv4 | number | Number of IPv4 addresses in each ENI for the service-managed Resource Gateway. |
| port | string[] | TCP port ranges that a consumer can use to access the resource. |
| security | string[] | Security groups to attach to the service-managed Resource Gateway. |
| subnet | string[] | Subnets that the service-managed Resource Gateway will span. |
hostAddress
Type:
string
IP address or DNS name of the target resource.
vpcId
Type:
string
VPC to create the service-managed Resource Gateway in.
ipAddressType?
Type:
string
(optional)
IP address type of the service-managed Resource Gateway.
ipv4AddressesPerEni?
Type:
number
(optional)
Number of IPv4 addresses in each ENI for the service-managed Resource Gateway.
portRanges?
Type:
string[]
(optional)
TCP port ranges that a consumer can use to access the resource.
securityGroupIds?
Type:
string[]
(optional)
Security groups to attach to the service-managed Resource Gateway.
subnetIds?
Type:
string[]
(optional)
Subnets that the service-managed Resource Gateway will span.

.NET
Go
Java
Python
TypeScript