AgreementReference

class aws_cdk.aws_transfer.AgreementReference(*, agreement_arn, agreement_id, server_id)

Bases: object

A reference to a Agreement resource.

Parameters:
  • agreement_arn (str) – The ARN of the Agreement resource.

  • agreement_id (str) – The AgreementId of the Agreement resource.

  • server_id (str) – The ServerId of the Agreement 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 import aws_transfer as transfer

agreement_reference = transfer.AgreementReference(
    agreement_arn="agreementArn",
    agreement_id="agreementId",
    server_id="serverId"
)

Attributes

agreement_arn

The ARN of the Agreement resource.

agreement_id

The AgreementId of the Agreement resource.

server_id

The ServerId of the Agreement resource.