import { _Tag, _UnmarshalledTag } from "./_Tag"; /** *

The Windows file permissions and ownership information assigned, by default, to native S3 objects when file gateway discovers them in S3 buckets. This operation is only supported for file gateways.

*/ export interface _SMBFileShareInfo { /** *

The Amazon Resource Name (ARN) of the file share.

*/ FileShareARN?: string; /** *

The ID of the file share.

*/ FileShareId?: string; /** *

The status of the file share. Possible values are CREATING, UPDATING, AVAILABLE and DELETING.

*/ FileShareStatus?: string; /** *

The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and region.

*/ GatewayARN?: string; /** *

True to use Amazon S3 server-side encryption with your own AWS KMS key, or false to use a key managed by Amazon S3. Optional.

*/ KMSEncrypted?: boolean; /** *

The Amazon Resource Name (ARN) of the AWS KMS key used for Amazon S3 server side encryption. This value can only be set when KMSEncrypted is true. Optional.

*/ KMSKey?: string; /** *

The file share path used by the SMB client to identify the mount point.

*/ Path?: string; /** *

The ARN of the IAM role that file gateway assumes when it accesses the underlying storage.

*/ Role?: string; /** *

The ARN of the backend storage used for storing file data.

*/ LocationARN?: string; /** *

The default storage class for objects put into an Amazon S3 bucket by the file gateway. Possible values are S3_STANDARD, S3_STANDARD_IA, or S3_ONEZONE_IA. If this field is not populated, the default value S3_STANDARD is used. Optional.

*/ DefaultStorageClass?: string; /** *

A value that sets the access control list permission for objects in the S3 bucket that a file gateway puts objects into. The default value is "private".

*/ ObjectACL?: "private" | "public-read" | "public-read-write" | "authenticated-read" | "bucket-owner-read" | "bucket-owner-full-control" | "aws-exec-read" | string; /** *

A value that sets the write status of a file share. This value is true if the write status is read-only, and otherwise false.

*/ ReadOnly?: boolean; /** *

A value that enables guessing of the MIME type for uploaded objects based on file extensions. Set this value to true to enable MIME type guessing, and otherwise to false. The default value is true.

*/ GuessMIMETypeEnabled?: boolean; /** *

A value that sets who pays the cost of the request and the cost associated with data download from the S3 bucket. If this value is set to true, the requester pays the costs. Otherwise the S3 bucket owner pays. However, the S3 bucket owner always pays the cost of storing data.

RequesterPays is a configuration for the S3 bucket that backs the file share, so make sure that the configuration on the file share is the same as the S3 bucket configuration.

*/ RequesterPays?: boolean; /** *

If this value is set to "true", indicates that ACL (access control list) is enabled on the SMB file share. If it is set to "false", it indicates that file and directory permissions are mapped to the POSIX permission.

For more information, see https://docs.aws.amazon.com/storagegateway/latest/userguide/smb-acl.html in the Storage Gateway User Guide.

*/ SMBACLEnabled?: boolean; /** *

A list of users or groups in the Active Directory that have administrator rights to the file share. A group must be prefixed with the @ character. For example @group1. Can only be set if Authentication is set to ActiveDirectory.

*/ AdminUserList?: Array | Iterable; /** *

A list of users or groups in the Active Directory that are allowed to access the file share. A group must be prefixed with the @ character. For example @group1. Can only be set if Authentication is set to ActiveDirectory.

*/ ValidUserList?: Array | Iterable; /** *

A list of users or groups in the Active Directory that are not allowed to access the file share. A group must be prefixed with the @ character. For example @group1. Can only be set if Authentication is set to ActiveDirectory.

*/ InvalidUserList?: Array | Iterable; /** *

The authentication method of the file share.

Valid values are ActiveDirectory or GuestAccess. The default is ActiveDirectory.

*/ Authentication?: string; /** *

A list of up to 50 tags assigned to the SMB file share, sorted alphabetically by key name. Each tag is a key-value pair. For a gateway with more than 10 tags assigned, you can view all tags using the ListTagsForResource API operation.

*/ Tags?: Array<_Tag> | Iterable<_Tag>; } export interface _UnmarshalledSMBFileShareInfo extends _SMBFileShareInfo { /** *

A list of users or groups in the Active Directory that have administrator rights to the file share. A group must be prefixed with the @ character. For example @group1. Can only be set if Authentication is set to ActiveDirectory.

*/ AdminUserList?: Array; /** *

A list of users or groups in the Active Directory that are allowed to access the file share. A group must be prefixed with the @ character. For example @group1. Can only be set if Authentication is set to ActiveDirectory.

*/ ValidUserList?: Array; /** *

A list of users or groups in the Active Directory that are not allowed to access the file share. A group must be prefixed with the @ character. For example @group1. Can only be set if Authentication is set to ActiveDirectory.

*/ InvalidUserList?: Array; /** *

A list of up to 50 tags assigned to the SMB file share, sorted alphabetically by key name. Each tag is a key-value pair. For a gateway with more than 10 tags assigned, you can view all tags using the ListTagsForResource API operation.

*/ Tags?: Array<_UnmarshalledTag>; }