interface PrivateConnectionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DevOpsAgent.PrivateConnectionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdevopsagent#PrivateConnectionReference |
Java | software.amazon.awscdk.interfaces.devopsagent.PrivateConnectionReference |
Python | aws_cdk.interfaces.aws_devopsagent.PrivateConnectionReference |
TypeScript | aws-cdk-lib » interfaces » aws_devopsagent » PrivateConnectionReference |
A reference to a PrivateConnection resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as interfaces_devopsagent } from 'aws-cdk-lib/interfaces';
const privateConnectionReference: interfaces_devopsagent.PrivateConnectionReference = {
privateConnectionArn: 'privateConnectionArn',
privateConnectionName: 'privateConnectionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| private | string | The ARN of the PrivateConnection resource. |
| private | string | The Name of the PrivateConnection resource. |
privateConnectionArn
Type:
string
The ARN of the PrivateConnection resource.
privateConnectionName
Type:
string
The Name of the PrivateConnection resource.

.NET
Go
Java
Python
TypeScript