CreateDataSetRequest

public struct CreateDataSetRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The type of file your data is stored in. Currently, the supported asset type is S3_SNAPSHOT.

    Declaration

    Swift

    public let assetType: AssetType
  • A description for the data set. This value can be up to 16,348 characters long.

    Declaration

    Swift

    public let description: String
  • The name of the data set.

    Declaration

    Swift

    public let name: String
  • A data set tag is an optional label that you can assign to a data set when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to these data sets and revisions.

    Declaration

    Swift

    public let tags: [String : String]?
  • Undocumented

    Declaration

    Swift

    public init(assetType: AssetType, description: String, name: String, tags: [String : String]? = nil)