Class: Aws::Redshift::Types::S3AccessGrantsScopeUnion

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-redshift/types.rb

Overview

Note:

S3AccessGrantsScopeUnion is a union - when making an API calls you must set exactly one of the members.

Note:

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

A list of scopes set up for S3 Access Grants integration.

Direct Known Subclasses

ReadWriteAccess, Unknown

Defined Under Namespace

Classes: ReadWriteAccess, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#read_write_accessTypes::ReadWriteAccess

The S3 Access Grants scope.



11127
11128
11129
11130
11131
11132
11133
11134
11135
11136
# File 'lib/aws-sdk-redshift/types.rb', line 11127

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

  class ReadWriteAccess < S3AccessGrantsScopeUnion; end
  class Unknown < S3AccessGrantsScopeUnion; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



11127
11128
11129
# File 'lib/aws-sdk-redshift/types.rb', line 11127

def unknown
  @unknown
end