interface ServiceManagedModeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnPrivateConnectionPropsMixin.ServiceManagedModeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnPrivateConnectionPropsMixin_ServiceManagedModeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnPrivateConnectionPropsMixin.ServiceManagedModeProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnPrivateConnectionPropsMixin.ServiceManagedModeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnPrivateConnectionPropsMixin » 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/cfn-property-mixins';
const serviceManagedModeProperty: devopsagent.CfnPrivateConnectionPropsMixin.ServiceManagedModeProperty = {
hostAddress: 'hostAddress',
ipAddressType: 'ipAddressType',
ipv4AddressesPerEni: 123,
portRanges: ['portRanges'],
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| host | string | IP address or DNS name of the target resource. |
| 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. |
| vpc | string | VPC to create the service-managed Resource Gateway in. |
hostAddress?
Type:
string
(optional)
IP address or DNS name of the target resource.
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.
vpcId?
Type:
string
(optional)
VPC to create the service-managed Resource Gateway in.

.NET
Go
Java
Python
TypeScript