@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-23T19:56:53.808Z") @Stability(value=Stable) public interface CfnProfileProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnProfileProps.Builder
A builder for
CfnProfileProps |
static class |
CfnProfileProps.Jsii$Proxy
An implementation for
CfnProfileProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnProfileProps.Builder |
builder() |
String |
getAs2Id()
The `As2Id` is the *AS2-name* , as defined in the [RFC 4130](https://docs.aws.amazon.com/https://datatracker.ietf.org/doc/html/rfc4130) .
|
default List<String> |
getCertificateIds()
An array of identifiers for the imported certificates.
|
String |
getProfileType()
Indicates whether to list only `LOCAL` type profiles or only `PARTNER` type profiles.
|
default List<CfnTag> |
getTags()
Key-value pairs that can be used to group and search for profiles.
|
@Stability(value=Stable) @NotNull String getAs2Id()
@Stability(value=Stable) @NotNull String getProfileType()
If not supplied in the request, the command lists all types of profiles.
@Stability(value=Stable) @Nullable default List<String> getCertificateIds()
You use this identifier for working with profiles and partner profiles.
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnProfileProps.Builder builder()
CfnProfileProps.Builder of CfnProfilePropsCopyright © 2022. All rights reserved.