Class: Aws::DevOpsAgent::Types::AdditionalServiceRegistrationStep
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsAgent::Types::AdditionalServiceRegistrationStep
- Defined in:
- gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb
Overview
Note:
AdditionalServiceRegistrationStep is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AdditionalServiceRegistrationStep corresponding to the set member.
Additional steps required to complete service registration.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#oauth ⇒ Types::OAuthAdditionalStepDetails
OAuth authorization step required.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#oauth ⇒ Types::OAuthAdditionalStepDetails
OAuth authorization step required.
150 151 152 153 154 155 156 157 158 159 |
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 150 class AdditionalServiceRegistrationStep < Struct.new( :oauth, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Oauth < AdditionalServiceRegistrationStep; end class Unknown < AdditionalServiceRegistrationStep; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
150 151 152 |
# File 'gems/aws-sdk-devopsagent/lib/aws-sdk-devopsagent/types.rb', line 150 def unknown @unknown end |