interface SourceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RoboMaker.Mixins.CfnRobotApplicationPropsMixin.SourceConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrobomaker/mixins#CfnRobotApplicationPropsMixin_SourceConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.robomaker.mixins.CfnRobotApplicationPropsMixin.SourceConfigProperty |
Python | aws_cdk.mixins_preview.aws_robomaker.mixins.CfnRobotApplicationPropsMixin.SourceConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_robomaker » mixins » 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 { mixins as robomaker_mixins } from '@aws-cdk/mixins-preview/aws-robomaker';
const sourceConfigProperty: robomaker_mixins.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