CfnAgreementProps
- class aws_cdk.aws_transfer.CfnAgreementProps(*, access_role, base_directory, local_profile_id, partner_profile_id, server_id, description=None, status=None, tags=None)
Bases:
object
Properties for defining a
CfnAgreement
.- Parameters:
access_role (
str
) – Connectors are used to send files using either the AS2 or SFTP protocol. For the access role, provide the Amazon Resource Name (ARN) of the AWS Identity and Access Management role to use. For AS2 connectors With AS2, you can send files by callingStartFileTransfer
and specifying the file paths in the request parameter,SendFilePaths
. We use the file’s parent directory (for example, for--send-file-paths /bucket/dir/file.txt
, parent directory is/bucket/dir/
) to temporarily store a processed AS2 message file, store the MDN when we receive them from the partner, and write a final JSON file containing relevant metadata of the transmission. So, theAccessRole
needs to provide read and write access to the parent directory of the file location used in theStartFileTransfer
request. Additionally, you need to provide read and write access to the parent directory of the files that you intend to send withStartFileTransfer
. If you are using Basic authentication for your AS2 connector, the access role requires thesecretsmanager:GetSecretValue
permission for the secret. If the secret is encrypted using a customer-managed key instead of the AWS managed key in Secrets Manager, then the role also needs thekms:Decrypt
permission for that key. For SFTP connectors Make sure that the access role provides read and write access to the parent directory of the file location that’s used in theStartFileTransfer
request. Additionally, make sure that the role providessecretsmanager:GetSecretValue
permission to AWS Secrets Manager .base_directory (
str
) – The landing directory (folder) for files that are transferred by using the AS2 protocol.local_profile_id (
str
) – A unique identifier for the AS2 local profile.partner_profile_id (
str
) – A unique identifier for the partner profile used in the agreement.server_id (
str
) – A system-assigned unique identifier for a server instance. This identifier indicates the specific server that the agreement uses.description (
Optional
[str
]) – The name or short description that’s used to identify the agreement.status (
Optional
[str
]) – The current status of the agreement, eitherACTIVE
orINACTIVE
.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – Key-value pairs that can be used to group and search for agreements.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-agreement.html
- 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 cfn_agreement_props = transfer.CfnAgreementProps( access_role="accessRole", base_directory="baseDirectory", local_profile_id="localProfileId", partner_profile_id="partnerProfileId", server_id="serverId", # the properties below are optional description="description", status="status", tags=[CfnTag( key="key", value="value" )] )
Attributes
- access_role
Connectors are used to send files using either the AS2 or SFTP protocol.
For the access role, provide the Amazon Resource Name (ARN) of the AWS Identity and Access Management role to use.
For AS2 connectors
With AS2, you can send files by calling
StartFileTransfer
and specifying the file paths in the request parameter,SendFilePaths
. We use the file’s parent directory (for example, for--send-file-paths /bucket/dir/file.txt
, parent directory is/bucket/dir/
) to temporarily store a processed AS2 message file, store the MDN when we receive them from the partner, and write a final JSON file containing relevant metadata of the transmission. So, theAccessRole
needs to provide read and write access to the parent directory of the file location used in theStartFileTransfer
request. Additionally, you need to provide read and write access to the parent directory of the files that you intend to send withStartFileTransfer
.If you are using Basic authentication for your AS2 connector, the access role requires the
secretsmanager:GetSecretValue
permission for the secret. If the secret is encrypted using a customer-managed key instead of the AWS managed key in Secrets Manager, then the role also needs thekms:Decrypt
permission for that key.For SFTP connectors
Make sure that the access role provides read and write access to the parent directory of the file location that’s used in the
StartFileTransfer
request. Additionally, make sure that the role providessecretsmanager:GetSecretValue
permission to AWS Secrets Manager .
- base_directory
The landing directory (folder) for files that are transferred by using the AS2 protocol.
- description
The name or short description that’s used to identify the agreement.
- local_profile_id
A unique identifier for the AS2 local profile.
- partner_profile_id
A unique identifier for the partner profile used in the agreement.
- server_id
A system-assigned unique identifier for a server instance.
This identifier indicates the specific server that the agreement uses.
- status
The current status of the agreement, either
ACTIVE
orINACTIVE
.
- tags
Key-value pairs that can be used to group and search for agreements.