Interface ListKeyPoliciesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<ListKeyPoliciesResponse.Builder,ListKeyPoliciesResponse>
,KmsResponse.Builder
,SdkBuilder<ListKeyPoliciesResponse.Builder,ListKeyPoliciesResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- ListKeyPoliciesResponse
public static interface ListKeyPoliciesResponse.Builder extends KmsResponse.Builder, SdkPojo, CopyableBuilder<ListKeyPoliciesResponse.Builder,ListKeyPoliciesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListKeyPoliciesResponse.Builder
nextMarker(String nextMarker)
WhenTruncated
is true, this element is present and contains the value to use for theMarker
parameter in a subsequent request.ListKeyPoliciesResponse.Builder
policyNames(String... policyNames)
A list of key policy names.ListKeyPoliciesResponse.Builder
policyNames(Collection<String> policyNames)
A list of key policy names.ListKeyPoliciesResponse.Builder
truncated(Boolean truncated)
A flag that indicates whether there are more items in the list.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.kms.model.KmsResponse.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
-
policyNames
ListKeyPoliciesResponse.Builder policyNames(Collection<String> policyNames)
A list of key policy names. The only valid value is
default
.- Parameters:
policyNames
- A list of key policy names. The only valid value isdefault
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
policyNames
ListKeyPoliciesResponse.Builder policyNames(String... policyNames)
A list of key policy names. The only valid value is
default
.- Parameters:
policyNames
- A list of key policy names. The only valid value isdefault
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextMarker
ListKeyPoliciesResponse.Builder nextMarker(String nextMarker)
When
Truncated
is true, this element is present and contains the value to use for theMarker
parameter in a subsequent request.- Parameters:
nextMarker
- WhenTruncated
is true, this element is present and contains the value to use for theMarker
parameter in a subsequent request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
truncated
ListKeyPoliciesResponse.Builder truncated(Boolean truncated)
A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of the
NextMarker
element in this response to theMarker
parameter in a subsequent request.- Parameters:
truncated
- A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of theNextMarker
element in this response to theMarker
parameter in a subsequent request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-