Class CfnTargetDomain
Resource Type definition for AWS::SecurityAgent::TargetDomain.
Inherited Members
Namespace: Amazon.CDK.AWS.SecurityAgent
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTargetDomain : CfnResource, IInspectable, ITargetDomainRef, IConstruct, IDependable, IEnvironmentAware, ITaggableV2
Syntax (vb)
Public Class CfnTargetDomain Inherits CfnResource Implements IInspectable, ITargetDomainRef, IConstruct, IDependable, IEnvironmentAware, ITaggableV2
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
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.SecurityAgent;
var cfnTargetDomain = new CfnTargetDomain(this, "MyCfnTargetDomain", new CfnTargetDomainProps {
TargetDomainName = "targetDomainName",
VerificationMethod = "verificationMethod",
// the properties below are optional
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
});
Synopsis
Constructors
| CfnTargetDomain(Construct, string, ICfnTargetDomainProps) | Create a new |
Properties
| AttrCreatedAt | Timestamp when the target domain was registered. |
| AttrTargetDomainId | Unique identifier of the target domain. |
| AttrVerificationDetails | Verification details to verify registered target domain. |
| AttrVerificationStatus | Current verification status of the registered target domain. |
| AttrVerifiedAt | Timestamp when the target domain was last successfully verified. |
| CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
| CdkTagManager | Tag Manager which manages the tags for this resource. |
| CfnProperties | Resource Type definition for AWS::SecurityAgent::TargetDomain. |
| CfnPropertyNames | Resource Type definition for AWS::SecurityAgent::TargetDomain. |
| Tags | Tags for the target domain. |
| TargetDomainName | Domain name of the target domain. |
| TargetDomainRef | A reference to a TargetDomain resource. |
| VerificationMethod | Verification method for the target domain. |
Methods
| ArnForTargetDomain(ITargetDomainRef) | Resource Type definition for AWS::SecurityAgent::TargetDomain. |
| FromTargetDomainId(Construct, string, string) | Creates a new ITargetDomainRef from a targetDomainId. |
| Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
| IsCfnTargetDomain(object) | Checks whether the given object is a CfnTargetDomain. |
| RenderProperties(IDictionary<string, object>) | Resource Type definition for AWS::SecurityAgent::TargetDomain. |
Constructors
CfnTargetDomain(Construct, string, ICfnTargetDomainProps)
Create a new AWS::SecurityAgent::TargetDomain.
public CfnTargetDomain(Construct scope, string id, ICfnTargetDomainProps props)
Parameters
- scope Construct
Scope in which this resource is defined.
- id string
Construct identifier for this resource (unique in its scope).
- props ICfnTargetDomainProps
Resource properties.
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
ExampleMetadata: fixture=_generated
Properties
AttrCreatedAt
Timestamp when the target domain was registered.
public virtual string AttrCreatedAt { get; }
Property Value
Remarks
CloudformationAttribute: CreatedAt
AttrTargetDomainId
Unique identifier of the target domain.
public virtual string AttrTargetDomainId { get; }
Property Value
Remarks
CloudformationAttribute: TargetDomainId
AttrVerificationDetails
Verification details to verify registered target domain.
public virtual IResolvable AttrVerificationDetails { get; }
Property Value
Remarks
CloudformationAttribute: VerificationDetails
AttrVerificationStatus
Current verification status of the registered target domain.
public virtual string AttrVerificationStatus { get; }
Property Value
Remarks
CloudformationAttribute: VerificationStatus
AttrVerifiedAt
Timestamp when the target domain was last successfully verified.
public virtual string AttrVerifiedAt { get; }
Property Value
Remarks
CloudformationAttribute: VerifiedAt
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
ExampleMetadata: fixture=_generated
CdkTagManager
Tag Manager which manages the tags for this resource.
public virtual TagManager CdkTagManager { get; }
Property Value
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
ExampleMetadata: fixture=_generated
CfnProperties
Resource Type definition for AWS::SecurityAgent::TargetDomain.
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
Overrides
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
ExampleMetadata: fixture=_generated
CfnPropertyNames
Resource Type definition for AWS::SecurityAgent::TargetDomain.
protected override IDictionary<string, string> CfnPropertyNames { get; }
Property Value
Overrides
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
ExampleMetadata: fixture=_generated
Tags
Tags for the target domain.
public virtual ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
ExampleMetadata: fixture=_generated
TargetDomainName
Domain name of the target domain.
public virtual string TargetDomainName { get; set; }
Property Value
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
ExampleMetadata: fixture=_generated
TargetDomainRef
A reference to a TargetDomain resource.
public virtual ITargetDomainReference TargetDomainRef { get; }
Property Value
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
ExampleMetadata: fixture=_generated
VerificationMethod
Verification method for the target domain.
public virtual string VerificationMethod { get; set; }
Property Value
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
ExampleMetadata: fixture=_generated
Methods
ArnForTargetDomain(ITargetDomainRef)
Resource Type definition for AWS::SecurityAgent::TargetDomain.
public static string ArnForTargetDomain(ITargetDomainRef resource)
Parameters
- resource ITargetDomainRef
Returns
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
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.SecurityAgent;
var cfnTargetDomain = new CfnTargetDomain(this, "MyCfnTargetDomain", new CfnTargetDomainProps {
TargetDomainName = "targetDomainName",
VerificationMethod = "verificationMethod",
// the properties below are optional
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
});
FromTargetDomainId(Construct, string, string)
Creates a new ITargetDomainRef from a targetDomainId.
public static ITargetDomainRef FromTargetDomainId(Construct scope, string id, string targetDomainId)
Parameters
Returns
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
ExampleMetadata: fixture=_generated
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
CloudformationResource: AWS::SecurityAgent::TargetDomain
ExampleMetadata: fixture=_generated
IsCfnTargetDomain(object)
Checks whether the given object is a CfnTargetDomain.
public static bool IsCfnTargetDomain(object x)
Parameters
- x object
Returns
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
ExampleMetadata: fixture=_generated
RenderProperties(IDictionary<string, object>)
Resource Type definition for AWS::SecurityAgent::TargetDomain.
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props IDictionary<string, object>
Returns
Overrides
Remarks
CloudformationResource: AWS::SecurityAgent::TargetDomain
ExampleMetadata: fixture=_generated