S3LocationBindOptions
- class aws_cdk.aws_stepfunctions_tasks.S3LocationBindOptions(*, for_reading=None, for_writing=None)
- Bases: - object- Options for binding an S3 Location. - Parameters:
- for_reading ( - Optional[- bool]) – Allow reading from the S3 Location. Default: false
- for_writing ( - Optional[- bool]) – Allow writing to the S3 Location. Default: false
 
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_stepfunctions_tasks as stepfunctions_tasks s3_location_bind_options = stepfunctions_tasks.S3LocationBindOptions( for_reading=False, for_writing=False ) - Attributes - for_reading
- Allow reading from the S3 Location. - Default:
- false 
 
 - for_writing
- Allow writing to the S3 Location. - Default:
- false