Interface ICfnProfileProps
Properties for defining a CfnProfile
.
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnProfileProps
Syntax (vb)
Public Interface ICfnProfileProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-profile.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Transfer;
var cfnProfileProps = new CfnProfileProps {
As2Id = "as2Id",
ProfileType = "profileType",
// the properties below are optional
CertificateIds = new [] { "certificateIds" },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
As2Id | The |
Certificate |
An array of identifiers for the imported certificates. |
Profile |
Indicates whether to list only |
Tags | Key-value pairs that can be used to group and search for profiles. |
Properties
As2Id
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.
string As2Id { get; }
Property Value
System.
Remarks
CertificateIds
An array of identifiers for the imported certificates.
virtual string[] CertificateIds { get; }
Property Value
System.
Remarks
You use this identifier for working with profiles and partner profiles.
ProfileType
Indicates whether to list only LOCAL
type profiles or only PARTNER
type profiles.
string ProfileType { get; }
Property Value
System.
Remarks
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.
virtual ICfnTag[] Tags { get; }
Property Value
ICfn