Show / Hide Table of Contents

Class CfnDetector.OutcomeProperty

The outcome.

Inheritance
object
CfnDetector.OutcomeProperty
Implements
CfnDetector.IOutcomeProperty
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.OutcomeProperty : CfnDetector.IOutcomeProperty
Syntax (vb)
Public Class CfnDetector.OutcomeProperty Implements CfnDetector.IOutcomeProperty
Remarks

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

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

string

Remarks

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

CreatedTime

The timestamp when the outcome was created.

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

string

Remarks

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

Description

The outcome description.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-detector-outcome.html#cfn-frauddetector-detector-outcome-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-outcome.html#cfn-frauddetector-detector-outcome-inline

LastUpdatedTime

The timestamp when the outcome 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-outcome.html#cfn-frauddetector-detector-outcome-lastupdatedtime

Name

The outcome name.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-detector-outcome.html#cfn-frauddetector-detector-outcome-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-outcome.html#cfn-frauddetector-detector-outcome-tags

Implements

CfnDetector.IOutcomeProperty
Back to top Generated by DocFX