Interface GetExtensionResponse.Builder
-
- All Superinterfaces:
AppConfigResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<GetExtensionResponse.Builder,GetExtensionResponse>,SdkBuilder<GetExtensionResponse.Builder,GetExtensionResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetExtensionResponse
public static interface GetExtensionResponse.Builder extends AppConfigResponse.Builder, SdkPojo, CopyableBuilder<GetExtensionResponse.Builder,GetExtensionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetExtensionResponse.Builderactions(Map<ActionPoint,? extends Collection<Action>> actions)The actions defined in the extension.GetExtensionResponse.BuilderactionsWithStrings(Map<String,? extends Collection<Action>> actions)The actions defined in the extension.GetExtensionResponse.Builderarn(String arn)The system-generated Amazon Resource Name (ARN) for the extension.GetExtensionResponse.Builderdescription(String description)Information about the extension.GetExtensionResponse.Builderid(String id)The system-generated ID of the extension.GetExtensionResponse.Buildername(String name)The extension name.GetExtensionResponse.Builderparameters(Map<String,Parameter> parameters)The parameters accepted by the extension.GetExtensionResponse.BuilderversionNumber(Integer versionNumber)The extension version number.-
Methods inherited from interface software.amazon.awssdk.services.appconfig.model.AppConfigResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
id
GetExtensionResponse.Builder id(String id)
The system-generated ID of the extension.
- Parameters:
id- The system-generated ID of the extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
GetExtensionResponse.Builder name(String name)
The extension name.
- Parameters:
name- The extension name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
versionNumber
GetExtensionResponse.Builder versionNumber(Integer versionNumber)
The extension version number.
- Parameters:
versionNumber- The extension version number.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
GetExtensionResponse.Builder arn(String arn)
The system-generated Amazon Resource Name (ARN) for the extension.
- Parameters:
arn- The system-generated Amazon Resource Name (ARN) for the extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
GetExtensionResponse.Builder description(String description)
Information about the extension.
- Parameters:
description- Information about the extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionsWithStrings
GetExtensionResponse.Builder actionsWithStrings(Map<String,? extends Collection<Action>> actions)
The actions defined in the extension.
- Parameters:
actions- The actions defined in the extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actions
GetExtensionResponse.Builder actions(Map<ActionPoint,? extends Collection<Action>> actions)
The actions defined in the extension.
- Parameters:
actions- The actions defined in the extension.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
GetExtensionResponse.Builder parameters(Map<String,Parameter> parameters)
The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the
CreateExtensionAssociationAPI action. For Lambda extension actions, these parameters are included in the Lambda request object.- Parameters:
parameters- The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using theCreateExtensionAssociationAPI action. For Lambda extension actions, these parameters are included in the Lambda request object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-