Interface ListSecurityControlDefinitionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListSecurityControlDefinitionsResponse.Builder,ListSecurityControlDefinitionsResponse>,SdkBuilder<ListSecurityControlDefinitionsResponse.Builder,ListSecurityControlDefinitionsResponse>,SdkPojo,SdkResponse.Builder,SecurityHubResponse.Builder
- Enclosing class:
- ListSecurityControlDefinitionsResponse
public static interface ListSecurityControlDefinitionsResponse.Builder extends SecurityHubResponse.Builder, SdkPojo, CopyableBuilder<ListSecurityControlDefinitionsResponse.Builder,ListSecurityControlDefinitionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListSecurityControlDefinitionsResponse.BuildernextToken(String nextToken)A pagination parameter that's included in the response only if it was included in the request.ListSecurityControlDefinitionsResponse.BuildersecurityControlDefinitions(Collection<SecurityControlDefinition> securityControlDefinitions)An array of controls that apply to the specified standard.ListSecurityControlDefinitionsResponse.BuildersecurityControlDefinitions(Consumer<SecurityControlDefinition.Builder>... securityControlDefinitions)An array of controls that apply to the specified standard.ListSecurityControlDefinitionsResponse.BuildersecurityControlDefinitions(SecurityControlDefinition... securityControlDefinitions)An array of controls that apply to the specified standard.-
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
-
Methods inherited from interface software.amazon.awssdk.services.securityhub.model.SecurityHubResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
securityControlDefinitions
ListSecurityControlDefinitionsResponse.Builder securityControlDefinitions(Collection<SecurityControlDefinition> securityControlDefinitions)
An array of controls that apply to the specified standard.
- Parameters:
securityControlDefinitions- An array of controls that apply to the specified standard.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityControlDefinitions
ListSecurityControlDefinitionsResponse.Builder securityControlDefinitions(SecurityControlDefinition... securityControlDefinitions)
An array of controls that apply to the specified standard.
- Parameters:
securityControlDefinitions- An array of controls that apply to the specified standard.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityControlDefinitions
ListSecurityControlDefinitionsResponse.Builder securityControlDefinitions(Consumer<SecurityControlDefinition.Builder>... securityControlDefinitions)
An array of controls that apply to the specified standard.
This is a convenience method that creates an instance of theSecurityControlDefinition.Builderavoiding the need to create one manually viaSecurityControlDefinition.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#securityControlDefinitions(List.) - Parameters:
securityControlDefinitions- a consumer that will call methods onSecurityControlDefinition.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#securityControlDefinitions(java.util.Collection)
-
nextToken
ListSecurityControlDefinitionsResponse.Builder nextToken(String nextToken)
A pagination parameter that's included in the response only if it was included in the request.
- Parameters:
nextToken- A pagination parameter that's included in the response only if it was included in the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-