Class: Aws::DataZone::Types::Permissions
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::Permissions
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Note:
Permissions is a union - when making an API calls you must set exactly one of the members.
Note:
Permissions is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Permissions corresponding to the set member.
The asset permissions.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3 ⇒ Array<String>
The S3 details of the asset permissions.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#s3 ⇒ Array<String>
The S3 details of the asset permissions.
16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 16254 class Permissions < Struct.new( :s3, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3 < Permissions; end class Unknown < Permissions; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
16254 16255 16256 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 16254 def unknown @unknown end |