Interface TrustedSigners.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<TrustedSigners.Builder,TrustedSigners>
,SdkBuilder<TrustedSigners.Builder,TrustedSigners>
,SdkPojo
- Enclosing class:
- TrustedSigners
public static interface TrustedSigners.Builder extends SdkPojo, CopyableBuilder<TrustedSigners.Builder,TrustedSigners>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TrustedSigners.Builder
enabled(Boolean enabled)
This field istrue
if any of the Amazon Web Services accounts in the list are configured as trusted signers.TrustedSigners.Builder
items(String... items)
A list of Amazon Web Services account identifiers.TrustedSigners.Builder
items(Collection<String> items)
A list of Amazon Web Services account identifiers.TrustedSigners.Builder
quantity(Integer quantity)
The number of Amazon Web Services accounts 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
TrustedSigners.Builder enabled(Boolean enabled)
This field is
true
if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field isfalse
.- Parameters:
enabled
- This field istrue
if any of the Amazon Web Services accounts in the list are configured as trusted signers. If not, this field isfalse
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
quantity
TrustedSigners.Builder quantity(Integer quantity)
The number of Amazon Web Services accounts in the list.
- Parameters:
quantity
- The number of Amazon Web Services accounts in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
TrustedSigners.Builder items(Collection<String> items)
A list of Amazon Web Services account identifiers.
- Parameters:
items
- A list of Amazon Web Services account identifiers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
TrustedSigners.Builder items(String... items)
A list of Amazon Web Services account identifiers.
- Parameters:
items
- A list of Amazon Web Services account identifiers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-