Class: Aws::DataZone::Types::ProvisioningConfiguration

Inherits:
Struct
  • Object
show all
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

LakeFormationConfiguration, Unknown

Defined Under Namespace

Classes: LakeFormationConfiguration, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#lake_formation_configurationTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



11900
11901
11902
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 11900

def unknown
  @unknown
end