Class: Aws::AppStream::Types::StorageConnector

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

Overview

Note:

When making an API call, you may pass StorageConnector data as a hash:

{
  connector_type: "HOMEFOLDERS", # required, accepts HOMEFOLDERS, GOOGLE_DRIVE, ONE_DRIVE
  resource_identifier: "ResourceIdentifier",
  domains: ["Domain"],
}

Describes a connector to enable persistent storage for users.

Instance Attribute Summary collapse

Instance Attribute Details

#connector_typeString

The type of storage connector.

Returns:

  • (String)


2635
2636
2637
2638
2639
2640
# File 'lib/aws-sdk-appstream/types.rb', line 2635

class StorageConnector < Struct.new(
  :connector_type,
  :resource_identifier,
  :domains)
  include Aws::Structure
end

#domainsArray<String>

The names of the domains for the account.

Returns:

  • (Array<String>)


2635
2636
2637
2638
2639
2640
# File 'lib/aws-sdk-appstream/types.rb', line 2635

class StorageConnector < Struct.new(
  :connector_type,
  :resource_identifier,
  :domains)
  include Aws::Structure
end

#resource_identifierString

The ARN of the storage connector.

Returns:

  • (String)


2635
2636
2637
2638
2639
2640
# File 'lib/aws-sdk-appstream/types.rb', line 2635

class StorageConnector < Struct.new(
  :connector_type,
  :resource_identifier,
  :domains)
  include Aws::Structure
end