Class: Aws::DataZone::Types::ProvisioningConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::ProvisioningConfiguration
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Note:
ProvisioningConfiguration is a union - when making an API calls you must set exactly one of the members.
Note:
ProvisioningConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProvisioningConfiguration corresponding to the set member.
The provisioning configuration of the blueprint.
Direct Known Subclasses
Defined Under Namespace
Classes: LakeFormationConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lake_formation_configuration ⇒ Types::LakeFormationConfiguration
The Lake Formation configuration of the Data Lake blueprint.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#lake_formation_configuration ⇒ Types::LakeFormationConfiguration
The Lake Formation configuration of the Data Lake blueprint.
11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 11900 class ProvisioningConfiguration < Struct.new( :lake_formation_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class LakeFormationConfiguration < ProvisioningConfiguration; end class Unknown < ProvisioningConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
11900 11901 11902 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 11900 def unknown @unknown end |