Class CfnDetector.OutcomeProperty
The outcome.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.FraudDetector
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDetector.OutcomeProperty : CfnDetector.IOutcomeProperty
Syntax (vb)
Public Class CfnDetector.OutcomeProperty Implements CfnDetector.IOutcomeProperty
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 outcomeProperty = new OutcomeProperty {
Arn = "arn",
CreatedTime = "createdTime",
Description = "description",
Inline = false,
LastUpdatedTime = "lastUpdatedTime",
Name = "name",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
OutcomeProperty() | The outcome. |
Properties
Arn | The outcome ARN. |
CreatedTime | The timestamp when the outcome was created. |
Description | The outcome description. |
Inline | Indicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack. |
LastUpdatedTime | The timestamp when the outcome was last updated. |
Name | The outcome name. |
Tags | An array of key-value pairs to apply to this resource. |
Constructors
OutcomeProperty()
The outcome.
public OutcomeProperty()
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 outcomeProperty = new OutcomeProperty {
Arn = "arn",
CreatedTime = "createdTime",
Description = "description",
Inline = false,
LastUpdatedTime = "lastUpdatedTime",
Name = "name",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
Arn
The outcome ARN.
public string? Arn { get; set; }
Property Value
Remarks
CreatedTime
The timestamp when the outcome was created.
public string? CreatedTime { get; set; }
Property Value
Remarks
Description
The outcome 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
The timestamp when the outcome was last updated.
public string? LastUpdatedTime { get; set; }
Property Value
Remarks
Name
The outcome 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[]