Interface ImportKeyPairResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ImportKeyPairResponse.Builder,ImportKeyPairResponse>,Ec2Response.Builder,SdkBuilder<ImportKeyPairResponse.Builder,ImportKeyPairResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ImportKeyPairResponse
public static interface ImportKeyPairResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<ImportKeyPairResponse.Builder,ImportKeyPairResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ImportKeyPairResponse.BuilderkeyFingerprint(String keyFingerprint)ImportKeyPairResponse.BuilderkeyName(String keyName)The key pair name that you provided.ImportKeyPairResponse.BuilderkeyPairId(String keyPairId)The ID of the resulting key pair.ImportKeyPairResponse.Buildertags(Collection<Tag> tags)The tags applied to the imported key pair.ImportKeyPairResponse.Buildertags(Consumer<Tag.Builder>... tags)The tags applied to the imported key pair.ImportKeyPairResponse.Buildertags(Tag... tags)The tags applied to the imported key pair.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Response.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
-
keyFingerprint
ImportKeyPairResponse.Builder keyFingerprint(String keyFingerprint)
-
For RSA key pairs, the key fingerprint is the MD5 public key fingerprint as specified in section 4 of RFC 4716.
-
For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.
- Parameters:
keyFingerprint-For RSA key pairs, the key fingerprint is the MD5 public key fingerprint as specified in section 4 of RFC 4716.
For ED25519 key pairs, the key fingerprint is the base64-encoded SHA-256 digest, which is the default for OpenSSH, starting with OpenSSH 6.8.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
keyName
ImportKeyPairResponse.Builder keyName(String keyName)
The key pair name that you provided.
- Parameters:
keyName- The key pair name that you provided.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keyPairId
ImportKeyPairResponse.Builder keyPairId(String keyPairId)
The ID of the resulting key pair.
- Parameters:
keyPairId- The ID of the resulting key pair.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ImportKeyPairResponse.Builder tags(Collection<Tag> tags)
The tags applied to the imported key pair.
- Parameters:
tags- The tags applied to the imported key pair.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ImportKeyPairResponse.Builder tags(Tag... tags)
The tags applied to the imported key pair.
- Parameters:
tags- The tags applied to the imported key pair.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
ImportKeyPairResponse.Builder tags(Consumer<Tag.Builder>... tags)
The tags applied to the imported key pair.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
-