Interface CreateActivationResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateActivationResponse.Builder,CreateActivationResponse>,SdkBuilder<CreateActivationResponse.Builder,CreateActivationResponse>,SdkPojo,SdkResponse.Builder,SsmResponse.Builder
- Enclosing class:
- CreateActivationResponse
public static interface CreateActivationResponse.Builder extends SsmResponse.Builder, SdkPojo, CopyableBuilder<CreateActivationResponse.Builder,CreateActivationResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateActivationResponse.BuilderactivationCode(String activationCode)The code the system generates when it processes the activation.CreateActivationResponse.BuilderactivationId(String activationId)The ID number generated by the system when it processed the activation.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.ssm.model.SsmResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
activationId
CreateActivationResponse.Builder activationId(String activationId)
The ID number generated by the system when it processed the activation. The activation ID functions like a user name.
- Parameters:
activationId- The ID number generated by the system when it processed the activation. The activation ID functions like a user name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
activationCode
CreateActivationResponse.Builder activationCode(String activationCode)
The code the system generates when it processes the activation. The activation code functions like a password to validate the activation ID.
- Parameters:
activationCode- The code the system generates when it processes the activation. The activation code functions like a password to validate the activation ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-