Interface TrustStore.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<TrustStore.Builder,TrustStore>
,SdkBuilder<TrustStore.Builder,TrustStore>
,SdkPojo
- Enclosing class:
- TrustStore
public static interface TrustStore.Builder extends SdkPojo, CopyableBuilder<TrustStore.Builder,TrustStore>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TrustStore.Builder
name(String name)
The name of the trust store.TrustStore.Builder
numberOfCaCertificates(Integer numberOfCaCertificates)
The number of ca certificates in the trust store.TrustStore.Builder
status(String status)
The current status of the trust store.TrustStore.Builder
status(TrustStoreStatus status)
The current status of the trust store.TrustStore.Builder
totalRevokedEntries(Long totalRevokedEntries)
The number of revoked certificates in the trust store.TrustStore.Builder
trustStoreArn(String trustStoreArn)
The Amazon Resource Name (ARN) of the trust store.-
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
-
name
TrustStore.Builder name(String name)
The name of the trust store.
- Parameters:
name
- The name of the trust store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trustStoreArn
TrustStore.Builder trustStoreArn(String trustStoreArn)
The Amazon Resource Name (ARN) of the trust store.
- Parameters:
trustStoreArn
- The Amazon Resource Name (ARN) of the trust store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
TrustStore.Builder status(String status)
The current status of the trust store.
- Parameters:
status
- The current status of the trust store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TrustStoreStatus
,TrustStoreStatus
-
status
TrustStore.Builder status(TrustStoreStatus status)
The current status of the trust store.
- Parameters:
status
- The current status of the trust store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TrustStoreStatus
,TrustStoreStatus
-
numberOfCaCertificates
TrustStore.Builder numberOfCaCertificates(Integer numberOfCaCertificates)
The number of ca certificates in the trust store.
- Parameters:
numberOfCaCertificates
- The number of ca certificates in the trust store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
totalRevokedEntries
TrustStore.Builder totalRevokedEntries(Long totalRevokedEntries)
The number of revoked certificates in the trust store.
- Parameters:
totalRevokedEntries
- The number of revoked certificates in the trust store.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-