Interface CfnProfileProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:48.544Z")
@Stability(Stable)
public interface CfnProfileProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnProfile.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.transfer.*;
CfnProfileProps cfnProfileProps = CfnProfileProps.builder()
.as2Id("as2Id")
.profileType("profileType")
// the properties below are optional
.certificateIds(List.of("certificateIds"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProfilePropsstatic final classAn implementation forCfnProfileProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnProfileProps.Builderbuilder()getAs2Id()TheAs2Idis the AS2-name , as defined in the RFC 4130 .An array of identifiers for the imported certificates.Indicates whether to list onlyLOCALtype profiles or onlyPARTNERtype profiles.getTags()Key-value pairs that can be used to group and search for profiles.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAs2Id
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.- See Also:
-
getProfileType
Indicates whether to list onlyLOCALtype profiles or onlyPARTNERtype profiles.If not supplied in the request, the command lists all types of profiles.
- See Also:
-
getCertificateIds
An array of identifiers for the imported certificates.You use this identifier for working with profiles and partner profiles.
- See Also:
-
getTags
Key-value pairs that can be used to group and search for profiles.- See Also:
-
builder
- Returns:
- a
CfnProfileProps.BuilderofCfnProfileProps
-