Class CfnRobotApplicationMixinProps
Properties for CfnRobotApplicationPropsMixin.
Implements
Inherited Members
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
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
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
Remarks
Environment
The environment of the robot application.
public string? Environment { get; set; }
Property Value
Remarks
Name
The name of the robot application.
public string? Name { get; set; }
Property Value
Remarks
RobotSoftwareSuite
The robot software suite used by the robot application.
public object? RobotSoftwareSuite { get; set; }
Property Value
Remarks
Sources
The sources of the robot application.
public object? Sources { get; set; }
Property Value
Remarks
Tags
A map that contains tag keys and tag values that are attached to the robot application.
public IDictionary<string, string>? Tags { get; set; }