Show / Hide Table of Contents

Class CfnDetector.LabelProperty

The label details.

Inheritance
object
CfnDetector.LabelProperty
Implements
CfnDetector.ILabelProperty
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.FraudDetector
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDetector.LabelProperty : CfnDetector.ILabelProperty
Syntax (vb)
Public Class CfnDetector.LabelProperty Implements CfnDetector.ILabelProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-detector-label.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.FraudDetector;

             var labelProperty = new LabelProperty {
                 Arn = "arn",
                 CreatedTime = "createdTime",
                 Description = "description",
                 Inline = false,
                 LastUpdatedTime = "lastUpdatedTime",
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

LabelProperty()

The label details.

Properties

Arn

The label ARN.

CreatedTime

Timestamp of when the event type was created.

Description

The label description.

Inline

Indicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack.

LastUpdatedTime

Timestamp of when the label was last updated.

Name

The label name.

Tags

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

Constructors

LabelProperty()

The label details.

public LabelProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-detector-label.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.FraudDetector;

             var labelProperty = new LabelProperty {
                 Arn = "arn",
                 CreatedTime = "createdTime",
                 Description = "description",
                 Inline = false,
                 LastUpdatedTime = "lastUpdatedTime",
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Arn

The label ARN.

public string? Arn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-detector-label.html#cfn-frauddetector-detector-label-arn

CreatedTime

Timestamp of when the event type was created.

public string? CreatedTime { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-detector-label.html#cfn-frauddetector-detector-label-createdtime

Description

The label description.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-detector-label.html#cfn-frauddetector-detector-label-description

Inline

Indicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack.

public object? Inline { get; set; }
Property Value

object

Remarks

If the value is true , CloudFormation will create/update/delete the resource when creating/updating/deleting the stack. If the value is false , CloudFormation will validate that the object exists and then use it within the resource without making changes to the object.

For example, when creating AWS::FraudDetector::Detector you must define at least two variables. You can set Inline=true for these variables and CloudFormation will create/update/delete the variables as part of stack operations. However, if you set Inline=false , CloudFormation will associate the variables to your detector but not execute any changes to the variables.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-detector-label.html#cfn-frauddetector-detector-label-inline

LastUpdatedTime

Timestamp of when the label was last updated.

public string? LastUpdatedTime { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-detector-label.html#cfn-frauddetector-detector-label-lastupdatedtime

Name

The label name.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-detector-label.html#cfn-frauddetector-detector-label-name

Tags

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

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

ICfnTag[]

Remarks

For more information, see Tag .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-detector-label.html#cfn-frauddetector-detector-label-tags

Implements

CfnDetector.ILabelProperty
Back to top Generated by DocFX