Class: Aws::Mgn::Types::SsmExternalParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Mgn::Types::SsmExternalParameter
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-mgn/types.rb
Overview
Note:
SsmExternalParameter is a union - when making an API calls you must set exactly one of the members.
Note:
SsmExternalParameter is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SsmExternalParameter corresponding to the set member.
AWS Systems Manager Document external parameter.
Direct Known Subclasses
Defined Under Namespace
Classes: DynamicPath, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dynamic_path ⇒ String
AWS Systems Manager Document external parameters dynamic path.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#dynamic_path ⇒ String
AWS Systems Manager Document external parameters dynamic path.
3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 |
# File 'lib/aws-sdk-mgn/types.rb', line 3822 class SsmExternalParameter < Struct.new( :dynamic_path, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DynamicPath < SsmExternalParameter; end class Unknown < SsmExternalParameter; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3822 3823 3824 |
# File 'lib/aws-sdk-mgn/types.rb', line 3822 def unknown @unknown end |