Interface ListImportsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFormationResponse.Builder,CopyableBuilder<ListImportsResponse.Builder,ListImportsResponse>,SdkBuilder<ListImportsResponse.Builder,ListImportsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListImportsResponse
@Mutable @NotThreadSafe public static interface ListImportsResponse.Builder extends CloudFormationResponse.Builder, SdkPojo, CopyableBuilder<ListImportsResponse.Builder,ListImportsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListImportsResponse.Builderimports(String... imports)A list of stack names that are importing the specified exported output value.ListImportsResponse.Builderimports(Collection<String> imports)A list of stack names that are importing the specified exported output value.ListImportsResponse.BuildernextToken(String nextToken)A string that identifies the next page of exports.-
Methods inherited from interface software.amazon.awssdk.services.cloudformation.model.CloudFormationResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
imports
ListImportsResponse.Builder imports(Collection<String> imports)
A list of stack names that are importing the specified exported output value.
- Parameters:
imports- A list of stack names that are importing the specified exported output value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
imports
ListImportsResponse.Builder imports(String... imports)
A list of stack names that are importing the specified exported output value.
- Parameters:
imports- A list of stack names that are importing the specified exported output value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListImportsResponse.Builder nextToken(String nextToken)
A string that identifies the next page of exports. If there is no additional page, this value is null.
- Parameters:
nextToken- A string that identifies the next page of exports. If there is no additional page, this value is null.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-