Show / Hide Table of Contents

Class CfnRobotApplicationMixinProps

Properties for CfnRobotApplicationPropsMixin.

Inheritance
object
CfnRobotApplicationMixinProps
Implements
ICfnRobotApplicationMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.RoboMaker
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnRobotApplicationMixinProps : ICfnRobotApplicationMixinProps
Syntax (vb)
Public Class CfnRobotApplicationMixinProps Implements ICfnRobotApplicationMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.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.CfnPropertyMixins.AWS.RoboMaker;

             var cfnRobotApplicationMixinProps = new CfnRobotApplicationMixinProps {
                 CurrentRevisionId = "currentRevisionId",
                 Environment = "environment",
                 Name = "name",
                 RobotSoftwareSuite = new RobotSoftwareSuiteProperty {
                     Name = "name",
                     Version = "version"
                 },
                 Sources = new [] { new SourceConfigProperty {
                     Architecture = "architecture",
                     S3Bucket = "s3Bucket",
                     S3Key = "s3Key"
                 } },
                 Tags = new Dictionary<string, string> {
                     { "tagsKey", "tags" }
                 }
             };

Synopsis

Constructors

CfnRobotApplicationMixinProps()

Properties for CfnRobotApplicationPropsMixin.

Properties

CurrentRevisionId

The current revision id.

Environment

The environment of the robot application.

Name

The name of the robot application.

RobotSoftwareSuite

The robot software suite used by the robot application.

Sources

The sources of the robot application.

Tags

A map that contains tag keys and tag values that are attached to the robot application.

Constructors

CfnRobotApplicationMixinProps()

Properties for CfnRobotApplicationPropsMixin.

public CfnRobotApplicationMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.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.CfnPropertyMixins.AWS.RoboMaker;

             var cfnRobotApplicationMixinProps = new CfnRobotApplicationMixinProps {
                 CurrentRevisionId = "currentRevisionId",
                 Environment = "environment",
                 Name = "name",
                 RobotSoftwareSuite = new RobotSoftwareSuiteProperty {
                     Name = "name",
                     Version = "version"
                 },
                 Sources = new [] { new SourceConfigProperty {
                     Architecture = "architecture",
                     S3Bucket = "s3Bucket",
                     S3Key = "s3Key"
                 } },
                 Tags = new Dictionary<string, string> {
                     { "tagsKey", "tags" }
                 }
             };

Properties

CurrentRevisionId

The current revision id.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-currentrevisionid

Environment

The environment of the robot application.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-environment

Name

The name of the robot application.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-name

RobotSoftwareSuite

The robot software suite used by the robot application.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-robotsoftwaresuite

Type union: either IResolvable or CfnRobotApplicationPropsMixin.IRobotSoftwareSuiteProperty

Sources

The sources of the robot application.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-sources

Type union: either IResolvable or (either IResolvable or CfnRobotApplicationPropsMixin.ISourceConfigProperty)[]

Tags

A map that contains tag keys and tag values that are attached to the robot application.

public IDictionary<string, string>? Tags { get; set; }
Property Value

IDictionary<string, string>

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#cfn-robomaker-robotapplication-tags

Implements

ICfnRobotApplicationMixinProps
Back to top Generated by DocFX