Class: Aws::SSM::Types::CreateActivationResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::CreateActivationResult
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#activation_code ⇒ String
The code the system generates when it processes the activation.
-
#activation_id ⇒ String
The ID number generated by the system when it processed the activation.
Instance Attribute Details
#activation_code ⇒ String
The code the system generates when it processes the activation. The activation code functions like a password to validate the activation ID.
2804 2805 2806 2807 2808 2809 |
# File 'lib/aws-sdk-ssm/types.rb', line 2804 class CreateActivationResult < Struct.new( :activation_id, :activation_code) SENSITIVE = [] include Aws::Structure end |
#activation_id ⇒ String
The ID number generated by the system when it processed the activation. The activation ID functions like a user name.
2804 2805 2806 2807 2808 2809 |
# File 'lib/aws-sdk-ssm/types.rb', line 2804 class CreateActivationResult < Struct.new( :activation_id, :activation_code) SENSITIVE = [] include Aws::Structure end |