Interface PublicKey.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PublicKey.Builder,PublicKey>,SdkBuilder<PublicKey.Builder,PublicKey>,SdkPojo
- Enclosing class:
- PublicKey
public static interface PublicKey.Builder extends SdkPojo, CopyableBuilder<PublicKey.Builder,PublicKey>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PublicKey.Builderarn(String arn)Public key ARN.PublicKey.Builderfingerprint(String fingerprint)The public key fingerprint, a short string used to identify or verify the full public key.PublicKey.Buildername(String name)Public key name.PublicKey.BuilderpublicKeyMaterial(String publicKeyMaterial)Public key material.PublicKey.Buildertags(Map<String,String> tags)Tags attached to the resource.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
arn
PublicKey.Builder arn(String arn)
Public key ARN.
- Parameters:
arn- Public key ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
PublicKey.Builder name(String name)
Public key name.
- Parameters:
name- Public key name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
publicKeyMaterial
PublicKey.Builder publicKeyMaterial(String publicKeyMaterial)
Public key material.
- Parameters:
publicKeyMaterial- Public key material.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fingerprint
PublicKey.Builder fingerprint(String fingerprint)
The public key fingerprint, a short string used to identify or verify the full public key.
- Parameters:
fingerprint- The public key fingerprint, a short string used to identify or verify the full public key.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
PublicKey.Builder tags(Map<String,String> tags)
Tags attached to the resource. Array of maps, each of the form
string:string (key:value). See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.- Parameters:
tags- Tags attached to the resource. Array of maps, each of the formstring:string (key:value). See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-