Class CfnDetector.LabelProperty
The label details.
Implements
Inherited Members
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
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
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
Remarks
CreatedTime
Timestamp of when the event type was created.
public string? CreatedTime { get; set; }
Property Value
Remarks
Description
The label description.
public string? Description { get; set; }
Property Value
Remarks
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
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.
LastUpdatedTime
Timestamp of when the label was last updated.
public string? LastUpdatedTime { get; set; }
Property Value
Remarks
Name
The label name.
public string? Name { get; set; }
Property Value
Remarks
Tags
An array of key-value pairs to apply to this resource.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]