aws-cdk-lib.aws_stepfunctions_tasks.S3LocationBindOptions

interface S3LocationBindOptions

LanguageType name
.NETAmazon.CDK.AWS.StepFunctions.Tasks.S3LocationBindOptions
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctionstasks#S3LocationBindOptions
Javasoftware.amazon.awscdk.services.stepfunctions.tasks.S3LocationBindOptions
Pythonaws_cdk.aws_stepfunctions_tasks.S3LocationBindOptions
TypeScript (source)aws-cdk-lib » aws_stepfunctions_tasks » S3LocationBindOptions

Options for binding an S3 Location.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_stepfunctions_tasks as stepfunctions_tasks } from 'aws-cdk-lib';
const s3LocationBindOptions: stepfunctions_tasks.S3LocationBindOptions = {
  forReading: false,
  forWriting: false,
};

Properties

NameTypeDescription
forReading?booleanAllow reading from the S3 Location.
forWriting?booleanAllow writing to the S3 Location.

forReading?

Type: boolean (optional, default: false)

Allow reading from the S3 Location.


forWriting?

Type: boolean (optional, default: false)

Allow writing to the S3 Location.