Show / Hide Table of Contents

Class CfnTestCasePropsMixin.OutputProperty

Specifies an output.

Inheritance
object
CfnTestCasePropsMixin.OutputProperty
Implements
CfnTestCasePropsMixin.IOutputProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTestCasePropsMixin.OutputProperty : CfnTestCasePropsMixin.IOutputProperty
Syntax (vb)
Public Class CfnTestCasePropsMixin.OutputProperty Implements CfnTestCasePropsMixin.IOutputProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-output.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.Mixins.Preview.AWS.AppTest.Mixins;

             var outputProperty = new OutputProperty {
                 File = new OutputFileProperty {
                     FileLocation = "fileLocation"
                 }
             };

Synopsis

Constructors

OutputProperty()

Specifies an output.

Properties

File

The file of the output.

Constructors

OutputProperty()

Specifies an output.

public OutputProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-output.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.Mixins.Preview.AWS.AppTest.Mixins;

             var outputProperty = new OutputProperty {
                 File = new OutputFileProperty {
                     FileLocation = "fileLocation"
                 }
             };

Properties

File

The file of the output.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-output.html#cfn-apptest-testcase-output-file

Type union: either IResolvable or CfnTestCasePropsMixin.IOutputFileProperty

Implements

CfnTestCasePropsMixin.IOutputProperty
Back to top Generated by DocFX