Interface DeleteAppInputSourceResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DeleteAppInputSourceResponse.Builder,DeleteAppInputSourceResponse>,ResiliencehubResponse.Builder,SdkBuilder<DeleteAppInputSourceResponse.Builder,DeleteAppInputSourceResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DeleteAppInputSourceResponse
public static interface DeleteAppInputSourceResponse.Builder extends ResiliencehubResponse.Builder, SdkPojo, CopyableBuilder<DeleteAppInputSourceResponse.Builder,DeleteAppInputSourceResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DeleteAppInputSourceResponse.BuilderappArn(String appArn)Amazon Resource Name (ARN) of the Resilience Hub application.default DeleteAppInputSourceResponse.BuilderappInputSource(Consumer<AppInputSource.Builder> appInputSource)Name of the input source from where the application resource is imported from.DeleteAppInputSourceResponse.BuilderappInputSource(AppInputSource appInputSource)Name of the input source from where the application resource is imported from.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.resiliencehub.model.ResiliencehubResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
appArn
DeleteAppInputSourceResponse.Builder appArn(String appArn)
Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:
partition:resiliencehub:region:account:app/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.- Parameters:
appArn- Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:partition:resiliencehub:region:account:app/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appInputSource
DeleteAppInputSourceResponse.Builder appInputSource(AppInputSource appInputSource)
Name of the input source from where the application resource is imported from.
- Parameters:
appInputSource- Name of the input source from where the application resource is imported from.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appInputSource
default DeleteAppInputSourceResponse.Builder appInputSource(Consumer<AppInputSource.Builder> appInputSource)
Name of the input source from where the application resource is imported from.
This is a convenience method that creates an instance of theAppInputSource.Builderavoiding the need to create one manually viaAppInputSource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toappInputSource(AppInputSource).- Parameters:
appInputSource- a consumer that will call methods onAppInputSource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
appInputSource(AppInputSource)
-
-