Show / Hide Table of Contents

Class CfnProfileProps

Properties for defining a CfnProfile.

Inheritance
object
CfnProfileProps
Implements
ICfnProfileProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnProfileProps : ICfnProfileProps
Syntax (vb)
Public Class CfnProfileProps Implements 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

Constructors

CfnProfileProps()

Properties for defining a CfnProfile.

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.

CertificateIds

An array of identifiers for the imported certificates.

ProfileType

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

Tags

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

Constructors

CfnProfileProps()

Properties for defining a CfnProfile.

public CfnProfileProps()
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"
                 } }
             };

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.

public string As2Id { get; set; }
Property Value

string

Remarks

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

CertificateIds

An array of identifiers for the imported certificates.

public string[]? CertificateIds { get; set; }
Property Value

string[]

Remarks

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

ProfileType

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

public string ProfileType { get; set; }
Property Value

string

Remarks

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.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnProfileProps
Back to top Generated by DocFX