Show / Hide Table of Contents

Class CfnInstanceProfile

Provides information that defines an instance profile.

Inheritance
object
CfnElement
CfnRefElement
CfnResource
CfnInstanceProfile
Implements
IInspectable
ITaggableV2
Inherited Members
CfnResource.IsCfnResource(object)
CfnResource.AddDeletionOverride(string)
CfnResource.AddDependency(CfnResource)
CfnResource.AddDependsOn(CfnResource)
CfnResource.AddMetadata(string, object)
CfnResource.AddOverride(string, object)
CfnResource.AddPropertyDeletionOverride(string)
CfnResource.AddPropertyOverride(string, object)
CfnResource.ApplyRemovalPolicy(RemovalPolicy?, IRemovalPolicyOptions)
CfnResource.GetAtt(string, ResolutionTypeHint?)
CfnResource.GetMetadata(string)
CfnResource.ObtainDependencies()
CfnResource.ObtainResourceDependencies()
CfnResource.RemoveDependency(CfnResource)
CfnResource.ReplaceDependency(CfnResource, CfnResource)
CfnResource.ShouldSynthesize()
CfnResource.ToString()
CfnResource.ValidateProperties(object)
CfnResource.CfnOptions
CfnResource.CfnResourceType
CfnResource.UpdatedProperites
CfnResource.UpdatedProperties
CfnRefElement.Ref
CfnElement.IsCfnElement(object)
CfnElement.OverrideLogicalId(string)
CfnElement.CreationStack
CfnElement.LogicalId
CfnElement.Stack
Namespace: Amazon.CDK.AWS.DMS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnInstanceProfile : CfnResource, IInspectable, ITaggableV2
Syntax (vb)
Public Class CfnInstanceProfile Inherits CfnResource Implements IInspectable, ITaggableV2
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

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.DMS;

             var cfnInstanceProfile = new CfnInstanceProfile(this, "MyCfnInstanceProfile", new CfnInstanceProfileProps {
                 AvailabilityZone = "availabilityZone",
                 Description = "description",
                 InstanceProfileIdentifier = "instanceProfileIdentifier",
                 InstanceProfileName = "instanceProfileName",
                 KmsKeyArn = "kmsKeyArn",
                 NetworkType = "networkType",
                 PubliclyAccessible = false,
                 SubnetGroupIdentifier = "subnetGroupIdentifier",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 VpcSecurityGroups = new [] { "vpcSecurityGroups" }
             });

Synopsis

Constructors

CfnInstanceProfile(Construct, string, ICfnInstanceProfileProps?)

Provides information that defines an instance profile.

Properties

AttrInstanceProfileArn

The Amazon Resource Name (ARN) string that uniquely identifies the instance profile.

AttrInstanceProfileCreationTime

The time the instance profile was created.

AvailabilityZone

The Availability Zone where the instance profile runs.

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

CdkTagManager

Tag Manager which manages the tags for this resource.

CfnProperties

Provides information that defines an instance profile.

Description

A description of the instance profile.

InstanceProfileIdentifier

The identifier of the instance profile.

InstanceProfileName

The user-friendly name for the instance profile.

KmsKeyArn

The Amazon Resource Name (ARN) of the AWS KMS key that is used to encrypt the connection parameters for the instance profile.

NetworkType

Specifies the network type for the instance profile.

PubliclyAccessible

Specifies the accessibility options for the instance profile.

SubnetGroupIdentifier

The identifier of the subnet group that is associated with the instance profile.

Tags

An array of key-value pairs to apply to this resource.

VpcSecurityGroups

The VPC security groups that are used with the instance profile.

Methods

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

RenderProperties(IDictionary<string, object>)

Provides information that defines an instance profile.

Constructors

CfnInstanceProfile(Construct, string, ICfnInstanceProfileProps?)

Provides information that defines an instance profile.

public CfnInstanceProfile(Construct scope, string id, ICfnInstanceProfileProps? props = null)
Parameters
scope Construct

Scope in which this resource is defined.

id string

Construct identifier for this resource (unique in its scope).

props ICfnInstanceProfileProps

Resource properties.

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

Properties

AttrInstanceProfileArn

The Amazon Resource Name (ARN) string that uniquely identifies the instance profile.

public virtual string AttrInstanceProfileArn { get; }
Property Value

string

Remarks

CloudformationAttribute: InstanceProfileArn

AttrInstanceProfileCreationTime

The time the instance profile was created.

public virtual string AttrInstanceProfileCreationTime { get; }
Property Value

string

Remarks

CloudformationAttribute: InstanceProfileCreationTime

AvailabilityZone

The Availability Zone where the instance profile runs.

public virtual string? AvailabilityZone { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

CdkTagManager

Tag Manager which manages the tags for this resource.

public virtual TagManager CdkTagManager { get; }
Property Value

TagManager

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

CfnProperties

Provides information that defines an instance profile.

protected override IDictionary<string, object> CfnProperties { get; }
Property Value

IDictionary<string, object>

Overrides
CfnResource.CfnProperties
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

Description

A description of the instance profile.

public virtual string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

InstanceProfileIdentifier

The identifier of the instance profile.

public virtual string? InstanceProfileIdentifier { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

InstanceProfileName

The user-friendly name for the instance profile.

public virtual string? InstanceProfileName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

KmsKeyArn

The Amazon Resource Name (ARN) of the AWS KMS key that is used to encrypt the connection parameters for the instance profile.

public virtual string? KmsKeyArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

NetworkType

Specifies the network type for the instance profile.

public virtual string? NetworkType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

PubliclyAccessible

Specifies the accessibility options for the instance profile.

public virtual object? PubliclyAccessible { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

SubnetGroupIdentifier

The identifier of the subnet group that is associated with the instance profile.

public virtual string? SubnetGroupIdentifier { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

Tags

An array of key-value pairs to apply to this resource.

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

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

VpcSecurityGroups

The VPC security groups that are used with the instance profile.

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

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

Methods

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

public virtual void Inspect(TreeInspector inspector)
Parameters
inspector TreeInspector

tree inspector to collect and process attributes.

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

RenderProperties(IDictionary<string, object>)

Provides information that defines an instance profile.

protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
props IDictionary<string, object>
Returns

IDictionary<string, object>

Overrides
CfnResource.RenderProperties(IDictionary<string, object>)
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html

CloudformationResource: AWS::DMS::InstanceProfile

ExampleMetadata: fixture=_generated

Implements

IInspectable
ITaggableV2
Back to top Generated by DocFX