Class: Aws::DataZone::Types::ProvisioningProperties

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb

Overview

Note:

ProvisioningProperties is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProvisioningProperties corresponding to the set member.

The provisioning properties of an environment blueprint.

Direct Known Subclasses

CloudFormation, Unknown

Defined Under Namespace

Classes: CloudFormation, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cloud_formationTypes::CloudFormationProperties

The cloud formation properties included as part of the provisioning properties of an environment blueprint.



8564
8565
8566
8567
8568
8569
8570
8571
8572
8573
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 8564

class ProvisioningProperties < Struct.new(
  :cloud_formation,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CloudFormation < ProvisioningProperties; end
  class Unknown < ProvisioningProperties; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



8564
8565
8566
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 8564

def unknown
  @unknown
end