CfnProfileMixinProps
- class aws_cdk.mixins_preview.aws_transfer.mixins.CfnProfileMixinProps(*, as2_id=None, certificate_ids=None, profile_type=None, tags=None)
Bases:
objectProperties for CfnProfilePropsMixin.
- Parameters:
as2_id (
Optional[str]) – TheAs2Idis the AS2-name , as defined in the RFC 4130 . For inbound transfers, this is theAS2-Fromheader for the AS2 messages sent from the partner. For outbound connectors, this is theAS2-Toheader for the AS2 messages sent to the partner using theStartFileTransferAPI 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 onlyLOCALtype profiles or onlyPARTNERtype 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
As2Idis the AS2-name , as defined in the RFC 4130 . For inbound transfers, this is theAS2-Fromheader for the AS2 messages sent from the partner. For outbound connectors, this is theAS2-Toheader for the AS2 messages sent to the partner using theStartFileTransferAPI operation. This ID cannot include spaces.
- certificate_ids
An array of identifiers for the imported certificates.
You use this identifier for working with profiles and partner profiles.
- profile_type
Indicates whether to list only
LOCALtype profiles or onlyPARTNERtype profiles.If not supplied in the request, the command lists all types of profiles.
- tags
Key-value pairs that can be used to group and search for profiles.