Class: Aws::Route53Domains::Types::TransferDomainToAnotherAwsAccountResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::TransferDomainToAnotherAwsAccountResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53domains/types.rb
Overview
The ‘TransferDomainToAnotherAwsAccount` response includes the following elements.
Constant Summary collapse
- SENSITIVE =
[:password]
Instance Attribute Summary collapse
-
#operation_id ⇒ String
Identifier for tracking the progress of the request.
-
#password ⇒ String
To finish transferring a domain to another Amazon Web Services account, the account that the domain is being transferred to must submit an [AcceptDomainTransferFromAnotherAwsAccount] request.
Instance Attribute Details
#operation_id ⇒ String
Identifier for tracking the progress of the request. To query the operation status, use [GetOperationDetail].
[1]: docs.aws.amazon.com/Route53/latest/APIReference/API_domains_GetOperationDetail.html
2897 2898 2899 2900 2901 2902 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2897 class TransferDomainToAnotherAwsAccountResponse < Struct.new( :operation_id, :password) SENSITIVE = [:password] include Aws::Structure end |
#password ⇒ String
To finish transferring a domain to another Amazon Web Services account, the account that the domain is being transferred to must submit an [AcceptDomainTransferFromAnotherAwsAccount] request. The request must include the value of the ‘Password` element that was returned in the `TransferDomainToAnotherAwsAccount` response.
2897 2898 2899 2900 2901 2902 |
# File 'lib/aws-sdk-route53domains/types.rb', line 2897 class TransferDomainToAnotherAwsAccountResponse < Struct.new( :operation_id, :password) SENSITIVE = [:password] include Aws::Structure end |