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

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
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.



12375
12376
12377
12378
12379
12380
12381
12382
12383
12384
# File 'lib/aws-sdk-datazone/types.rb', line 12375

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



12375
12376
12377
# File 'lib/aws-sdk-datazone/types.rb', line 12375

def unknown
  @unknown
end