PrivateConnectionReference

class aws_cdk.interfaces.aws_devopsagent.PrivateConnectionReference(*, private_connection_arn, private_connection_name)

Bases: object

A reference to a PrivateConnection resource.

Parameters:
  • private_connection_arn (str) – The ARN of the PrivateConnection resource.

  • private_connection_name (str) – The Name of the PrivateConnection resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.interfaces import aws_devopsagent as interfaces_devopsagent

private_connection_reference = interfaces_devopsagent.PrivateConnectionReference(
    private_connection_arn="privateConnectionArn",
    private_connection_name="privateConnectionName"
)

Attributes

private_connection_arn

The ARN of the PrivateConnection resource.

private_connection_name

The Name of the PrivateConnection resource.