interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.StepFunctions.Mixins.CfnStateMachinePropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsstepfunctions/mixins#CfnStateMachinePropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.stepfunctions.mixins.CfnStateMachinePropsMixin.S3LocationProperty |
Python | aws_cdk.mixins_preview.aws_stepfunctions.mixins.CfnStateMachinePropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_stepfunctions » mixins » CfnStateMachinePropsMixin » S3LocationProperty |
Defines the S3 bucket location where a state machine definition is stored.
The state machine definition must be a JSON or YAML file.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as stepfunctions_mixins } from '@aws-cdk/mixins-preview/aws-stepfunctions';
const s3LocationProperty: stepfunctions_mixins.CfnStateMachinePropsMixin.S3LocationProperty = {
bucket: 'bucket',
key: 'key',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The name of the S3 bucket where the state machine definition JSON or YAML file is stored. |
| key? | string | The name of the state machine definition file (Amazon S3 object name). |
| version? | string | For versioning-enabled buckets, a specific version of the state machine definition. |
bucket?
Type:
string
(optional)
The name of the S3 bucket where the state machine definition JSON or YAML file is stored.
key?
Type:
string
(optional)
The name of the state machine definition file (Amazon S3 object name).
version?
Type:
string
(optional)
For versioning-enabled buckets, a specific version of the state machine definition.

.NET
Go
Java
Python
TypeScript