Class: Aws::CleanRooms::Types::ProtectedJobOutputConfigurationOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::ProtectedJobOutputConfigurationOutput
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#member ⇒ Types::ProtectedJobMemberOutputConfigurationOutput
The member output configuration for a protected job.
-
#s3 ⇒ Types::ProtectedJobS3OutputConfigurationOutput
If present, the output for a protected job with an
S3output type. -
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#member ⇒ Types::ProtectedJobMemberOutputConfigurationOutput
The member output configuration for a protected job.
8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8021 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 |
#s3 ⇒ Types::ProtectedJobS3OutputConfigurationOutput
If present, the output for a protected job with an S3 output
type.
8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8021 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
8021 8022 8023 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 8021 def unknown @unknown end |