CreateTemplateRequest

public struct CreateTemplateRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The ID for the AWS account that the group is in. Currently, you use the ID for the AWS account that contains your Amazon QuickSight account.

    Declaration

    Swift

    public let awsAccountId: String
  • A display name for the template.

    Declaration

    Swift

    public let name: String?
  • A list of resource permissions to be set on the template.

    Declaration

    Swift

    public let permissions: [ResourcePermission]?
  • The entity that you are using as a source when you create the template. In SourceEntity, you specify the type of object you’re using as source: SourceTemplate for a template or SourceAnalysis for an analysis. Both of these require an Amazon Resource Name (ARN). For SourceTemplate, specify the ARN of the source template. For SourceAnalysis, specify the ARN of the source analysis. The SourceTemplate ARN can contain any AWS Account and any QuickSight-supported AWS Region. Use the DataSetReferences entity within SourceTemplate or SourceAnalysis to list the replacement datasets for the placeholders listed in the original. The schema in each dataset must match its placeholder.

    Declaration

    Swift

    public let sourceEntity: TemplateSourceEntity
  • Contains a map of the key-value pairs for the resource tag or tags assigned to the resource.

    Declaration

    Swift

    public let tags: [Tag]?
  • An ID for the template that you want to create. This template is unique per AWS Region in each AWS account.

    Declaration

    Swift

    public let templateId: String
  • A description of the current template version being created. This API operation creates the first version of the template. Every time UpdateTemplate is called, a new version is created. Each version of the template maintains a description of the version in the VersionDescription field.

    Declaration

    Swift

    public let versionDescription: String?
  • Undocumented

    Declaration

    Swift

    public init(awsAccountId: String, name: String? = nil, permissions: [ResourcePermission]? = nil, sourceEntity: TemplateSourceEntity, tags: [Tag]? = nil, templateId: String, versionDescription: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws