Interface ICfnProfileAssociationProps
Properties for defining a CfnProfileAssociation
.
Namespace: Amazon.CDK.AwsRoute53Profiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnProfileAssociationProps
Syntax (vb)
Public Interface ICfnProfileAssociationProps
Remarks
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_route53profiles;
var cfnProfileAssociationProps = new CfnProfileAssociationProps {
Name = "name",
ProfileId = "profileId",
ResourceId = "resourceId",
// the properties below are optional
Arn = "arn",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
Arn | The Amazon Resource Name (ARN) of the profile association to a VPC. |
Name | Name of the Profile association. |
Profile |
ID of the Profile. |
Resource |
The ID of the VPC. |
Tags | An array of key-value pairs to apply to this resource. |
Properties
Arn
The Amazon Resource Name (ARN) of the profile association to a VPC.
virtual string Arn { get; }
Property Value
System.
Remarks
Name
Name of the Profile association.
string Name { get; }
Property Value
System.
Remarks
ProfileId
ID of the Profile.
string ProfileId { get; }
Property Value
System.
Remarks
Update to this property requires update to the ResourceId
property as well, because you can only associate one Profile per VPC. For more information, see Route 53 Profiles .
ResourceId
The ID of the VPC.
string ResourceId { get; }
Property Value
System.
Remarks
Tags
An array of key-value pairs to apply to this resource.
virtual ICfnTag[] Tags { get; }
Property Value
ICfn