Interface CustomPluginConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CustomPluginConfiguration.Builder,CustomPluginConfiguration>,SdkBuilder<CustomPluginConfiguration.Builder,CustomPluginConfiguration>,SdkPojo
- Enclosing class:
- CustomPluginConfiguration
public static interface CustomPluginConfiguration.Builder extends SdkPojo, CopyableBuilder<CustomPluginConfiguration.Builder,CustomPluginConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CustomPluginConfiguration.BuilderapiSchema(Consumer<APISchema.Builder> apiSchema)Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema.CustomPluginConfiguration.BuilderapiSchema(APISchema apiSchema)Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema.CustomPluginConfiguration.BuilderapiSchemaType(String apiSchemaType)The type of OpenAPI schema to use.CustomPluginConfiguration.BuilderapiSchemaType(APISchemaType apiSchemaType)The type of OpenAPI schema to use.CustomPluginConfiguration.Builderdescription(String description)A description for your custom plugin configuration.-
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
-
description
CustomPluginConfiguration.Builder description(String description)
A description for your custom plugin configuration.
- Parameters:
description- A description for your custom plugin configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
apiSchemaType
CustomPluginConfiguration.Builder apiSchemaType(String apiSchemaType)
The type of OpenAPI schema to use.
- Parameters:
apiSchemaType- The type of OpenAPI schema to use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
APISchemaType,APISchemaType
-
apiSchemaType
CustomPluginConfiguration.Builder apiSchemaType(APISchemaType apiSchemaType)
The type of OpenAPI schema to use.
- Parameters:
apiSchemaType- The type of OpenAPI schema to use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
APISchemaType,APISchemaType
-
apiSchema
CustomPluginConfiguration.Builder apiSchema(APISchema apiSchema)
Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema.
- Parameters:
apiSchema- Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
apiSchema
default CustomPluginConfiguration.Builder apiSchema(Consumer<APISchema.Builder> apiSchema)
Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema.
This is a convenience method that creates an instance of theAPISchema.Builderavoiding the need to create one manually viaAPISchema.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toapiSchema(APISchema).- Parameters:
apiSchema- a consumer that will call methods onAPISchema.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
apiSchema(APISchema)
-
-