Class CfnDetector.OutcomeProperty
The outcome.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.FraudDetector
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class OutcomeProperty : Object, CfnDetector.IOutcomeProperty
Syntax (vb)
Public Class OutcomeProperty
Inherits Object
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
Outcome |
Properties
Arn | The outcome ARN. |
Created |
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. |
Last |
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()
public OutcomeProperty()
Properties
Arn
The outcome ARN.
public string Arn { get; set; }
Property Value
System.
Remarks
CreatedTime
The timestamp when the outcome was created.
public string CreatedTime { get; set; }
Property Value
System.
Remarks
Description
The outcome description.
public string Description { get; set; }
Property Value
System.
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
System.
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
System.
Remarks
Name
The outcome name.
public string Name { get; set; }
Property Value
System.
Remarks
Tags
An array of key-value pairs to apply to this resource.
public ICfnTag[] Tags { get; set; }
Property Value
ICfn