Interface IamRegistrationResponse.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<IamRegistrationResponse.Builder,IamRegistrationResponse>,SdkBuilder<IamRegistrationResponse.Builder,IamRegistrationResponse>,SdkPojo
- Enclosing class:
- IamRegistrationResponse
public static interface IamRegistrationResponse.Builder extends SdkPojo, CopyableBuilder<IamRegistrationResponse.Builder,IamRegistrationResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IamRegistrationResponse.BuildererrorMessage(String errorMessage)A message associated with a registration error.IamRegistrationResponse.BuilderregistrationStatus(String registrationStatus)The status of registering your IAM resource.IamRegistrationResponse.BuilderregistrationStatus(RegistrationStatus registrationStatus)The status of registering your IAM resource.IamRegistrationResponse.BuilderroleArn(String roleArn)The Amazon Resource Name (ARN) of the IAM role to register.-
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
-
roleArn
IamRegistrationResponse.Builder roleArn(String roleArn)
The Amazon Resource Name (ARN) of the IAM role to register.
- Parameters:
roleArn- The Amazon Resource Name (ARN) of the IAM role to register.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
registrationStatus
IamRegistrationResponse.Builder registrationStatus(String registrationStatus)
The status of registering your IAM resource. The status can be one of
REGISTRATION_SUCCESS,REGISTRATION_PENDING,REGISTRATION_FAILURE.- Parameters:
registrationStatus- The status of registering your IAM resource. The status can be one ofREGISTRATION_SUCCESS,REGISTRATION_PENDING,REGISTRATION_FAILURE.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RegistrationStatus,RegistrationStatus
-
registrationStatus
IamRegistrationResponse.Builder registrationStatus(RegistrationStatus registrationStatus)
The status of registering your IAM resource. The status can be one of
REGISTRATION_SUCCESS,REGISTRATION_PENDING,REGISTRATION_FAILURE.- Parameters:
registrationStatus- The status of registering your IAM resource. The status can be one ofREGISTRATION_SUCCESS,REGISTRATION_PENDING,REGISTRATION_FAILURE.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RegistrationStatus,RegistrationStatus
-
errorMessage
IamRegistrationResponse.Builder errorMessage(String errorMessage)
A message associated with a registration error.
- Parameters:
errorMessage- A message associated with a registration error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-