Interface CustomPluginLocationDescription.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomPluginLocationDescription.Builder,CustomPluginLocationDescription>,SdkBuilder<CustomPluginLocationDescription.Builder,CustomPluginLocationDescription>,SdkPojo
- Enclosing class:
- CustomPluginLocationDescription
public static interface CustomPluginLocationDescription.Builder extends SdkPojo, CopyableBuilder<CustomPluginLocationDescription.Builder,CustomPluginLocationDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CustomPluginLocationDescription.Builders3Location(Consumer<S3LocationDescription.Builder> s3Location)The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin file stored in Amazon S3.CustomPluginLocationDescription.Builders3Location(S3LocationDescription s3Location)The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin file stored in Amazon S3.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
s3Location
CustomPluginLocationDescription.Builder s3Location(S3LocationDescription s3Location)
The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin file stored in Amazon S3.
- Parameters:
s3Location- The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin file stored in Amazon S3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Location
default CustomPluginLocationDescription.Builder s3Location(Consumer<S3LocationDescription.Builder> s3Location)
The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin file stored in Amazon S3.
This is a convenience method that creates an instance of theS3LocationDescription.Builderavoiding the need to create one manually viaS3LocationDescription.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Location(S3LocationDescription).- Parameters:
s3Location- a consumer that will call methods onS3LocationDescription.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Location(S3LocationDescription)
-
-