CreateAnalysisRequest
public struct CreateAnalysisRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ID for the analysis that you’re creating. This ID displays in the URL of the analysis.
Declaration
Swift
public let analysisId: String
-
The ID of the AWS account where you are creating an analysis.
Declaration
Swift
public let awsAccountId: String
-
A descriptive name for the analysis that you’re creating. This name displays for the analysis in the QuickSight console.
Declaration
Swift
public let name: String
-
The parameter names and override values that you want to use. An analysis can have any parameter type, and some parameters might accept multiple values.
Declaration
Swift
public let parameters: Parameters?
-
A structure that describes the principals and the resource-level permissions on an analysis. You can use the Permissions structure to grant permissions by providing a list of AWS Identity and Access Management (IAM) action information for each principal listed by Amazon Resource Name (ARN). To specify no permissions, omit Permissions.
Declaration
Swift
public let permissions: [ResourcePermission]?
-
A source entity to use for the analysis that you’re creating. This metadata structure contains details that describe a source template and one or more datasets.
Declaration
Swift
public let sourceEntity: AnalysisSourceEntity
-
Contains a map of the key-value pairs for the resource tag or tags assigned to the analysis.
Declaration
Swift
public let tags: [Tag]?
-
The ARN for the theme to apply to the analysis that you’re creating. To see the theme in the QuickSight console, make sure that you have access to it.
Declaration
Swift
public let themeArn: String?
-
Undocumented
Declaration
Swift
public init(analysisId: String, awsAccountId: String, name: String, parameters: Parameters? = nil, permissions: [ResourcePermission]? = nil, sourceEntity: AnalysisSourceEntity, tags: [Tag]? = nil, themeArn: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws