CfnProfileMixinProps

class aws_cdk.mixins_preview.aws_transfer.mixins.CfnProfileMixinProps(*, as2_id=None, certificate_ids=None, profile_type=None, tags=None)

Bases: object

Properties for CfnProfilePropsMixin.

Parameters:
  • as2_id (Optional[str]) – The As2Id is the AS2-name , as defined in the RFC 4130 . For inbound transfers, this is the AS2-From header for the AS2 messages sent from the partner. For outbound connectors, this is the AS2-To header for the AS2 messages sent to the partner using the StartFileTransfer API operation. This ID cannot include spaces.

  • certificate_ids (Optional[Sequence[str]]) – An array of identifiers for the imported certificates. You use this identifier for working with profiles and partner profiles.

  • profile_type (Optional[str]) – Indicates whether to list only LOCAL type profiles or only PARTNER type profiles. If not supplied in the request, the command lists all types of profiles.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Key-value pairs that can be used to group and search for profiles.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-profile.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.mixins_preview.aws_transfer import mixins as transfer_mixins

cfn_profile_mixin_props = transfer_mixins.CfnProfileMixinProps(
    as2_id="as2Id",
    certificate_ids=["certificateIds"],
    profile_type="profileType",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

as2_id

The As2Id is the AS2-name , as defined in the RFC 4130 . For inbound transfers, this is the AS2-From header for the AS2 messages sent from the partner. For outbound connectors, this is the AS2-To header for the AS2 messages sent to the partner using the StartFileTransfer API operation. This ID cannot include spaces.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-profile.html#cfn-transfer-profile-as2id

certificate_ids

An array of identifiers for the imported certificates.

You use this identifier for working with profiles and partner profiles.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-profile.html#cfn-transfer-profile-certificateids

profile_type

Indicates whether to list only LOCAL type profiles or only PARTNER type profiles.

If not supplied in the request, the command lists all types of profiles.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-profile.html#cfn-transfer-profile-profiletype

tags

Key-value pairs that can be used to group and search for profiles.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-profile.html#cfn-transfer-profile-tags