Interface TrustedKeyGroups.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<TrustedKeyGroups.Builder,TrustedKeyGroups>
,SdkBuilder<TrustedKeyGroups.Builder,TrustedKeyGroups>
,SdkPojo
- Enclosing class:
- TrustedKeyGroups
public static interface TrustedKeyGroups.Builder extends SdkPojo, CopyableBuilder<TrustedKeyGroups.Builder,TrustedKeyGroups>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TrustedKeyGroups.Builder
enabled(Boolean enabled)
This field istrue
if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies.TrustedKeyGroups.Builder
items(String... items)
A list of key groups identifiers.TrustedKeyGroups.Builder
items(Collection<String> items)
A list of key groups identifiers.TrustedKeyGroups.Builder
quantity(Integer quantity)
The number of key groups in the list.-
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
-
-
-
-
Method Detail
-
enabled
TrustedKeyGroups.Builder enabled(Boolean enabled)
This field is
true
if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field isfalse
.- Parameters:
enabled
- This field istrue
if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field isfalse
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quantity
TrustedKeyGroups.Builder quantity(Integer quantity)
The number of key groups in the list.
- Parameters:
quantity
- The number of key groups in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
TrustedKeyGroups.Builder items(Collection<String> items)
A list of key groups identifiers.
- Parameters:
items
- A list of key groups identifiers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
TrustedKeyGroups.Builder items(String... items)
A list of key groups identifiers.
- Parameters:
items
- A list of key groups identifiers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-