interface SourceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RoboMaker.CfnRobotApplicationPropsMixin.SourceConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrobomaker#CfnRobotApplicationPropsMixin_SourceConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.robomaker.CfnRobotApplicationPropsMixin.SourceConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_robomaker.CfnRobotApplicationPropsMixin.SourceConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_robomaker » CfnRobotApplicationPropsMixin » SourceConfigProperty |
Information about a source configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_robomaker as robomaker } from '@aws-cdk/cfn-property-mixins';
const sourceConfigProperty: robomaker.CfnRobotApplicationPropsMixin.SourceConfigProperty = {
architecture: 'architecture',
s3Bucket: 's3Bucket',
s3Key: 's3Key',
};
Properties
| Name | Type | Description |
|---|---|---|
| architecture? | string | The target processor architecture for the application. |
| s3 | string | The Amazon S3 bucket name. |
| s3 | string | The s3 object key. |
architecture?
Type:
string
(optional)
The target processor architecture for the application.
s3Bucket?
Type:
string
(optional)
The Amazon S3 bucket name.
s3Key?
Type:
string
(optional)
The s3 object key.

.NET
Go
Java
Python
TypeScript