Interface CustomPluginLocation.Builder

All Superinterfaces:
Buildable, CopyableBuilder<CustomPluginLocation.Builder,CustomPluginLocation>, SdkBuilder<CustomPluginLocation.Builder,CustomPluginLocation>, SdkPojo
Enclosing class:
CustomPluginLocation

public static interface CustomPluginLocation.Builder extends SdkPojo, CopyableBuilder<CustomPluginLocation.Builder,CustomPluginLocation>
  • Method Details

    • s3Location

      CustomPluginLocation.Builder s3Location(S3Location 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 CustomPluginLocation.Builder s3Location(Consumer<S3Location.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 the S3Location.Builder avoiding the need to create one manually via S3Location.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to s3Location(S3Location).

      Parameters:
      s3Location - a consumer that will call methods on S3Location.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: