Interface ListFrameworksResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,BackupResponse.Builder,Buildable,CopyableBuilder<ListFrameworksResponse.Builder,ListFrameworksResponse>,SdkBuilder<ListFrameworksResponse.Builder,ListFrameworksResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListFrameworksResponse
public static interface ListFrameworksResponse.Builder extends BackupResponse.Builder, SdkPojo, CopyableBuilder<ListFrameworksResponse.Builder,ListFrameworksResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListFrameworksResponse.Builderframeworks(Collection<Framework> frameworks)A list of frameworks with details for each framework, including the framework name, Amazon Resource Name (ARN), description, number of controls, creation time, and deployment status.ListFrameworksResponse.Builderframeworks(Consumer<Framework.Builder>... frameworks)A list of frameworks with details for each framework, including the framework name, Amazon Resource Name (ARN), description, number of controls, creation time, and deployment status.ListFrameworksResponse.Builderframeworks(Framework... frameworks)A list of frameworks with details for each framework, including the framework name, Amazon Resource Name (ARN), description, number of controls, creation time, and deployment status.ListFrameworksResponse.BuildernextToken(String nextToken)An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.-
Methods inherited from interface software.amazon.awssdk.services.backup.model.BackupResponse.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
-
frameworks
ListFrameworksResponse.Builder frameworks(Collection<Framework> frameworks)
A list of frameworks with details for each framework, including the framework name, Amazon Resource Name (ARN), description, number of controls, creation time, and deployment status.
- Parameters:
frameworks- A list of frameworks with details for each framework, including the framework name, Amazon Resource Name (ARN), description, number of controls, creation time, and deployment status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
frameworks
ListFrameworksResponse.Builder frameworks(Framework... frameworks)
A list of frameworks with details for each framework, including the framework name, Amazon Resource Name (ARN), description, number of controls, creation time, and deployment status.
- Parameters:
frameworks- A list of frameworks with details for each framework, including the framework name, Amazon Resource Name (ARN), description, number of controls, creation time, and deployment status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
frameworks
ListFrameworksResponse.Builder frameworks(Consumer<Framework.Builder>... frameworks)
A list of frameworks with details for each framework, including the framework name, Amazon Resource Name (ARN), description, number of controls, creation time, and deployment status.
This is a convenience method that creates an instance of theFramework.Builderavoiding the need to create one manually viaFramework.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#frameworks(List.) - Parameters:
frameworks- a consumer that will call methods onFramework.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#frameworks(java.util.Collection)
-
nextToken
ListFrameworksResponse.Builder nextToken(String nextToken)
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
- Parameters:
nextToken- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-