Class: Aws::CleanRooms::Types::ProtectedJobOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ProtectedJobOutput
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-cleanrooms/types.rb
Overview
Note:
ProtectedJobOutput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProtectedJobOutput corresponding to the set member.
Contains details about the protected job output.
Direct Known Subclasses
Defined Under Namespace
Classes: MemberList, S3, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#member_list ⇒ Array<Types::ProtectedJobSingleMemberOutput>
The list of member Amazon Web Services account(s) that received the results of the job.
-
#s3 ⇒ Types::ProtectedJobS3Output
If present, the output for a protected job with an
S3output type. -
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#member_list ⇒ Array<Types::ProtectedJobSingleMemberOutput>
The list of member Amazon Web Services account(s) that received the results of the job.
8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 8065 class ProtectedJobOutput < Struct.new( :s3, :member_list, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3 < ProtectedJobOutput; end class MemberList < ProtectedJobOutput; end class Unknown < ProtectedJobOutput; end end |
#s3 ⇒ Types::ProtectedJobS3Output
If present, the output for a protected job with an S3 output type.
8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 8065 class ProtectedJobOutput < Struct.new( :s3, :member_list, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3 < ProtectedJobOutput; end class MemberList < ProtectedJobOutput; end class Unknown < ProtectedJobOutput; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
8065 8066 8067 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 8065 def unknown @unknown end |