interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.StepFunctions.CfnStateMachinePropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsstepfunctions#CfnStateMachinePropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.stepfunctions.CfnStateMachinePropsMixin.S3LocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_stepfunctions.CfnStateMachinePropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_stepfunctions » 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 { aws_stepfunctions as stepfunctions } from '@aws-cdk/cfn-property-mixins';
const s3LocationProperty: stepfunctions.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