Interface S3LocationConfig
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- S3LocationConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:48.179Z")
@Stability(Stable)
public interface S3LocationConfig
extends software.amazon.jsii.JsiiSerializable
Stores information about the location of an object in Amazon S3.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.stepfunctions.tasks.*;
 S3LocationConfig s3LocationConfig = S3LocationConfig.builder()
         .uri("uri")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forS3LocationConfigstatic final classAn implementation forS3LocationConfig
- 
Method SummaryModifier and TypeMethodDescriptionstatic S3LocationConfig.Builderbuilder()getUri()Uniquely identifies the resource in Amazon S3.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getUriUniquely identifies the resource in Amazon S3.
- 
builder- Returns:
- a S3LocationConfig.BuilderofS3LocationConfig
 
 
-