Interface PutMetadataFlagRequest.Builder
-
- All Superinterfaces:
AmplifyUiBuilderRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<PutMetadataFlagRequest.Builder,PutMetadataFlagRequest>,SdkBuilder<PutMetadataFlagRequest.Builder,PutMetadataFlagRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- PutMetadataFlagRequest
public static interface PutMetadataFlagRequest.Builder extends AmplifyUiBuilderRequest.Builder, SdkPojo, CopyableBuilder<PutMetadataFlagRequest.Builder,PutMetadataFlagRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PutMetadataFlagRequest.BuilderappId(String appId)The unique ID for the Amplify app.default PutMetadataFlagRequest.Builderbody(Consumer<PutMetadataFlagBody.Builder> body)The metadata information to store.PutMetadataFlagRequest.Builderbody(PutMetadataFlagBody body)The metadata information to store.PutMetadataFlagRequest.BuilderenvironmentName(String environmentName)The name of the backend environment that is part of the Amplify app.PutMetadataFlagRequest.BuilderfeatureName(String featureName)The name of the feature associated with the metadata.PutMetadataFlagRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PutMetadataFlagRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.services.amplifyuibuilder.model.AmplifyUiBuilderRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
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
-
appId
PutMetadataFlagRequest.Builder appId(String appId)
The unique ID for the Amplify app.
- Parameters:
appId- The unique ID for the Amplify app.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environmentName
PutMetadataFlagRequest.Builder environmentName(String environmentName)
The name of the backend environment that is part of the Amplify app.
- Parameters:
environmentName- The name of the backend environment that is part of the Amplify app.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featureName
PutMetadataFlagRequest.Builder featureName(String featureName)
The name of the feature associated with the metadata.
- Parameters:
featureName- The name of the feature associated with the metadata.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
body
PutMetadataFlagRequest.Builder body(PutMetadataFlagBody body)
The metadata information to store.
- Parameters:
body- The metadata information to store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
body
default PutMetadataFlagRequest.Builder body(Consumer<PutMetadataFlagBody.Builder> body)
The metadata information to store.
This is a convenience method that creates an instance of thePutMetadataFlagBody.Builderavoiding the need to create one manually viaPutMetadataFlagBody.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tobody(PutMetadataFlagBody).- Parameters:
body- a consumer that will call methods onPutMetadataFlagBody.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
body(PutMetadataFlagBody)
-
overrideConfiguration
PutMetadataFlagRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutMetadataFlagRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-