Class: Aws::CleanRooms::Types::ProtectedJobOutputConfigurationOutput

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

Overview

Note:

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

The protected job output configuration output.

Direct Known Subclasses

Member, S3, Unknown

Defined Under Namespace

Classes: Member, S3, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#memberTypes::ProtectedJobMemberOutputConfigurationOutput

The member output configuration for a protected job.



7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7288

class ProtectedJobOutputConfigurationOutput < Struct.new(
  :s3,
  :member,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class S3 < ProtectedJobOutputConfigurationOutput; end
  class Member < ProtectedJobOutputConfigurationOutput; end
  class Unknown < ProtectedJobOutputConfigurationOutput; end
end

#s3Types::ProtectedJobS3OutputConfigurationOutput

If present, the output for a protected job with an S3 output type.



7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7288

class ProtectedJobOutputConfigurationOutput < Struct.new(
  :s3,
  :member,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class S3 < ProtectedJobOutputConfigurationOutput; end
  class Member < ProtectedJobOutputConfigurationOutput; end
  class Unknown < ProtectedJobOutputConfigurationOutput; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



7288
7289
7290
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 7288

def unknown
  @unknown
end