Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update L1 CloudFormation resource definitions #32755

Merged
merged 2 commits into from
Jan 6, 2025

Conversation

aws-cdk-automation
Copy link
Collaborator

@aws-cdk-automation aws-cdk-automation commented Jan 6, 2025

Issue # (if applicable)
Closes #32743

Updates the L1 CloudFormation resource definitions with the latest changes from @aws-cdk/aws-service-spec

L1 CloudFormation resource definition changes:

├[~] service aws-amazonmq
│ └ resources
│    └[~]  resource AWS::AmazonMQ::Broker
│       └ types
│          └[~] type User
│            └ properties
│               └[+] JolokiaApiAccess: string
├[~] service aws-batch
│ └ resources
│    └[~]  resource AWS::Batch::JobDefinition
│       └ types
│          ├[~] type ContainerProperties
│          │ └ properties
│          │    └ Volumes: - Array<Volume> ⇐ Array<Volumes>
│          │               + Array<Volumes>
│          ├[~] type EcsTaskProperties
│          │ └ properties
│          │    └ Volumes: - Array<Volume>
│          │               + Array<Volumes>
│          ├[~] type EfsVolumeConfiguration
│          │ └ properties
│          │    └ AuthorizationConfig: - AuthorizationConfig
│          │                           + EFSAuthorizationConfig ⇐ AuthorizationConfig
│          ├[-]  type EFSVolumeConfiguration
│          │  ├      documentation: This is used when you're using an Amazon Elastic File System file system for job storage. For more information, see [Amazon EFS Volumes](https://docs.aws.amazon.com/batch/latest/userguide/efs-volumes.html) in the *AWS Batch User Guide* .
│          │  │      name: EFSVolumeConfiguration
│          │  └ properties
│          │     ├ TransitEncryption: string
│          │     ├ AuthorizationConfig: EFSAuthorizationConfig
│          │     ├ FileSystemId: string (required)
│          │     ├ RootDirectory: string
│          │     └ TransitEncryptionPort: integer
│          ├[~] type MultiNodeContainerProperties
│          │ └ properties
│          │    └ Volumes: - Array<Volume>
│          │               + Array<Volumes>
│          ├[~] type MultiNodeEcsTaskProperties
│          │ └ properties
│          │    └ Volumes: - Array<Volume>
│          │               + Array<Volumes>
│          ├[-]  type Volume
│          │  ├      documentation: A data volume that's used in a job's container properties.
│          │  │      name: Volume
│          │  └ properties
│          │     ├ Host: Host
│          │     ├ EfsVolumeConfiguration: EFSVolumeConfiguration
│          │     └ Name: string
│          └[~] type Volumes
│            └ properties
│               └ Host: - VolumesHost
│                       + Host ⇐ VolumesHost
├[~] service aws-bedrock
│ └ resources
│    └[~]  resource AWS::Bedrock::Prompt
│       └ types
│          ├[~] type SpecificToolChoice
│          │ └      - documentation: The model must request a specific tool. For example, `{"tool" : {"name" : "Your tool name"}}` .
│          │        > This field is only supported by Anthropic Claude 3 models.
│          │        + documentation: The model must request a specific tool. For example, `{"tool" : {"name" : "Your tool name"}}` . For more information, see [Call a tool with the Converse API](https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html) in the Amazon Bedrock User Guide
│          │        > This field is only supported by Anthropic Claude 3 models.
│          ├[~] type Tool
│          │ └      - documentation: Information about a tool that you can use with the Converse API. For more information, see [Tool use (function calling)](https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html) in the Amazon Bedrock User Guide.
│          │        + documentation: Information about a tool that you can use with the Converse API. For more information, see [Call a tool with the Converse API](https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html) in the Amazon Bedrock User Guide.
│          ├[~] type ToolChoice
│          │ └      - documentation: Determines which tools the model should request in a call to `Converse` or `ConverseStream` . `ToolChoice` is only supported by Anthropic Claude 3 models and by Mistral AI Mistral Large.
│          │        + documentation: Determines which tools the model should request in a call to `Converse` or `ConverseStream` . `ToolChoice` is only supported by Anthropic Claude 3 models and by Mistral AI Mistral Large. For more information, see [Call a tool with the Converse API](https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html) in the Amazon Bedrock User Guide.
│          ├[~] type ToolInputSchema
│          │ └      - documentation: The schema for the tool. The top level schema type must be `object` .
│          │        + documentation: The schema for the tool. The top level schema type must be `object` . For more information, see [Call a tool with the Converse API](https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html) in the Amazon Bedrock User Guide.
│          └[~] type ToolSpecification
│            └      - documentation: The specification for the tool.
│                   + documentation: The specification for the tool. For more information, see [Call a tool with the Converse API](https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html) in the Amazon Bedrock User Guide.
├[~] service aws-cleanrooms
│ └ resources
│    ├[~]  resource AWS::CleanRooms::Collaboration
│    │  ├ properties
│    │  │  └[+] CreatorMLMemberAbilities: MLMemberAbilities (immutable)
│    │  └ types
│    │     ├[~] type MemberSpecification
│    │     │ └ properties
│    │     │    └[+] MLMemberAbilities: MLMemberAbilities
│    │     ├[+]  type MLMemberAbilities
│    │     │  ├      name: MLMemberAbilities
│    │     │  └ properties
│    │     │     └ CustomMLMemberAbilities: Array<string> (required)
│    │     ├[+]  type MLPaymentConfig
│    │     │  ├      name: MLPaymentConfig
│    │     │  └ properties
│    │     │     ├ ModelTraining: ModelTrainingPaymentConfig
│    │     │     └ ModelInference: ModelInferencePaymentConfig
│    │     ├[+]  type ModelInferencePaymentConfig
│    │     │  ├      name: ModelInferencePaymentConfig
│    │     │  └ properties
│    │     │     └ IsResponsible: boolean (required)
│    │     ├[+]  type ModelTrainingPaymentConfig
│    │     │  ├      name: ModelTrainingPaymentConfig
│    │     │  └ properties
│    │     │     └ IsResponsible: boolean (required)
│    │     └[~] type PaymentConfiguration
│    │       └ properties
│    │          └[+] MachineLearning: MLPaymentConfig
│    └[~]  resource AWS::CleanRooms::Membership
│       └ types
│          ├[+]  type MembershipMLPaymentConfig
│          │  ├      name: MembershipMLPaymentConfig
│          │  └ properties
│          │     ├ ModelTraining: MembershipModelTrainingPaymentConfig
│          │     └ ModelInference: MembershipModelInferencePaymentConfig
│          ├[+]  type MembershipModelInferencePaymentConfig
│          │  ├      name: MembershipModelInferencePaymentConfig
│          │  └ properties
│          │     └ IsResponsible: boolean (required)
│          ├[+]  type MembershipModelTrainingPaymentConfig
│          │  ├      name: MembershipModelTrainingPaymentConfig
│          │  └ properties
│          │     └ IsResponsible: boolean (required)
│          └[~] type MembershipPaymentConfiguration
│            └ properties
│               └[+] MachineLearning: MembershipMLPaymentConfig
├[~] service aws-dms
│ └ resources
│    └[~]  resource AWS::DMS::DataProvider
│       └ types
│          ├[~] type DocDbSettings
│          │ ├      - documentation: DocDbSettings property identifier.
│          │ │      + documentation: Provides information that defines a DocumentDB endpoint.
│          │ └ properties
│          │    ├ DatabaseName: (documentation changed)
│          │    ├ Port: (documentation changed)
│          │    └ ServerName: (documentation changed)
│          ├[~] type MongoDbSettings
│          │ ├      - documentation: MongoDbSettings property identifier.
│          │ │      + documentation: Provides information that defines a MongoDB endpoint.
│          │ └ properties
│          │    ├ AuthMechanism: (documentation changed)
│          │    ├ AuthSource: (documentation changed)
│          │    ├ AuthType: (documentation changed)
│          │    ├ DatabaseName: (documentation changed)
│          │    ├ Port: (documentation changed)
│          │    └ ServerName: (documentation changed)
│          └[~] type RedshiftSettings
│            ├      - documentation: RedshiftSettings property identifier.
│            │      + documentation: Provides information that defines an Amazon Redshift endpoint.
│            └ properties
│               ├ DatabaseName: (documentation changed)
│               ├ Port: (documentation changed)
│               └ ServerName: (documentation changed)
├[~] service aws-docdb
│ └ resources
│    └[~]  resource AWS::DocDB::DBCluster
│       └ properties
│          ├[+] ManageMasterUserPassword: boolean
│          ├[+] MasterUserSecretKmsKeyId: string
│          └[+] RotateMasterUserPassword: boolean
├[~] service aws-mediaconvert
│ └ resources
│    └[~]  resource AWS::MediaConvert::Queue
│       └ properties
│          └[+] ConcurrentJobs: integer
├[~] service aws-quicksight
│ └ resources
│    ├[~]  resource AWS::QuickSight::Analysis
│    │  └ types
│    │     ├[~] type AnalysisDefinition
│    │     │ └ properties
│    │     │    └ StaticFiles: (documentation changed)
│    │     ├[~] type BarChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type BoxPlotVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type ComboChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type CustomContentVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type FilledMapVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type FontSize
│    │     │ └ properties
│    │     │    └ Absolute: (documentation changed)
│    │     ├[~] type FunnelChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type GaugeChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type GeospatialCategoricalColor
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The definition for a categorical color.
│    │     │ └ properties
│    │     │    ├ CategoryDataColors: (documentation changed)
│    │     │    ├ DefaultOpacity: (documentation changed)
│    │     │    ├ NullDataSettings: (documentation changed)
│    │     │    └ NullDataVisibility: (documentation changed)
│    │     ├[~] type GeospatialCategoricalDataColor
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The categorical data color for a single category.
│    │     │ └ properties
│    │     │    ├ Color: (documentation changed)
│    │     │    └ DataValue: (documentation changed)
│    │     ├[~] type GeospatialCircleRadius
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The geospatial radius for a circle.
│    │     │ └ properties
│    │     │    └ Radius: (documentation changed)
│    │     ├[~] type GeospatialCircleSymbolStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The properties for a circle symbol style.
│    │     │ └ properties
│    │     │    ├ CircleRadius: (documentation changed)
│    │     │    ├ FillColor: (documentation changed)
│    │     │    ├ StrokeColor: (documentation changed)
│    │     │    └ StrokeWidth: (documentation changed)
│    │     ├[~] type GeospatialColor
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The visualization properties for solid, gradient, and categorical colors.
│    │     │ └ properties
│    │     │    ├ Categorical: (documentation changed)
│    │     │    ├ Gradient: (documentation changed)
│    │     │    └ Solid: (documentation changed)
│    │     ├[~] type GeospatialDataSourceItem
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The data source properties for the geospatial data.
│    │     │ └ properties
│    │     │    └ StaticFileDataSource: (documentation changed)
│    │     ├[~] type GeospatialGradientColor
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The definition for a gradient color.
│    │     │ └ properties
│    │     │    ├ DefaultOpacity: (documentation changed)
│    │     │    ├ NullDataSettings: (documentation changed)
│    │     │    ├ NullDataVisibility: (documentation changed)
│    │     │    └ StepColors: (documentation changed)
│    │     ├[~] type GeospatialGradientStepColor
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The gradient step color for a single step.
│    │     │ └ properties
│    │     │    ├ Color: (documentation changed)
│    │     │    └ DataValue: (documentation changed)
│    │     ├[~] type GeospatialLayerColorField
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The color field that defines a gradient or categorical style.
│    │     │ └ properties
│    │     │    ├ ColorDimensionsFields: (documentation changed)
│    │     │    └ ColorValuesFields: (documentation changed)
│    │     ├[~] type GeospatialLayerDefinition
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The definition properties for a geospatial layer.
│    │     │ └ properties
│    │     │    ├ LineLayer: (documentation changed)
│    │     │    ├ PointLayer: (documentation changed)
│    │     │    └ PolygonLayer: (documentation changed)
│    │     ├[~] type GeospatialLayerItem
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The properties for a single geospatial layer.
│    │     │ └ properties
│    │     │    ├ Actions: (documentation changed)
│    │     │    ├ DataSource: (documentation changed)
│    │     │    ├ JoinDefinition: (documentation changed)
│    │     │    ├ Label: (documentation changed)
│    │     │    ├ LayerDefinition: (documentation changed)
│    │     │    ├ LayerId: (documentation changed)
│    │     │    ├ LayerType: (documentation changed)
│    │     │    └ Visibility: (documentation changed)
│    │     ├[~] type GeospatialLayerJoinDefinition
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The custom actions for a layer.
│    │     │ └ properties
│    │     │    ├ ColorField: (documentation changed)
│    │     │    └ ShapeKeyField: (documentation changed)
│    │     ├[~] type GeospatialLayerMapConfiguration
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The map definition that defines map state, map style, and geospatial layers.
│    │     │ └ properties
│    │     │    ├ MapLayers: (documentation changed)
│    │     │    ├ MapState: (documentation changed)
│    │     │    └ MapStyle: (documentation changed)
│    │     ├[~] type GeospatialLineLayer
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The geospatial Line layer.
│    │     │ └ properties
│    │     │    └ Style: (documentation changed)
│    │     ├[~] type GeospatialLineStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The visualization style for a line layer.
│    │     │ └ properties
│    │     │    └ LineSymbolStyle: (documentation changed)
│    │     ├[~] type GeospatialLineSymbolStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The symbol style for a line layer.
│    │     │ └ properties
│    │     │    ├ FillColor: (documentation changed)
│    │     │    └ LineWidth: (documentation changed)
│    │     ├[~] type GeospatialLineWidth
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The width properties for a line.
│    │     │ └ properties
│    │     │    └ LineWidth: (documentation changed)
│    │     ├[~] type GeospatialMapConfiguration
│    │     │ └ properties
│    │     │    └ Interactions: (documentation changed)
│    │     ├[~] type GeospatialMapState
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The map state properties for a map.
│    │     │ └ properties
│    │     │    └ MapNavigation: (documentation changed)
│    │     ├[~] type GeospatialMapStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The map style properties for a map.
│    │     │ └ properties
│    │     │    ├ BackgroundColor: (documentation changed)
│    │     │    ├ BaseMapStyle: (documentation changed)
│    │     │    └ BaseMapVisibility: (documentation changed)
│    │     ├[~] type GeospatialMapVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type GeospatialNullDataSettings
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The properties for the visualization of null data.
│    │     │ └ properties
│    │     │    └ SymbolStyle: (documentation changed)
│    │     ├[~] type GeospatialNullSymbolStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The symbol style for null data.
│    │     │ └ properties
│    │     │    ├ FillColor: (documentation changed)
│    │     │    ├ StrokeColor: (documentation changed)
│    │     │    └ StrokeWidth: (documentation changed)
│    │     ├[~] type GeospatialPointLayer
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The geospatial Point layer.
│    │     │ └ properties
│    │     │    └ Style: (documentation changed)
│    │     ├[~] type GeospatialPointStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The point style for a point layer.
│    │     │ └ properties
│    │     │    └ CircleSymbolStyle: (documentation changed)
│    │     ├[~] type GeospatialPolygonLayer
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The geospatial polygon layer.
│    │     │ └ properties
│    │     │    └ Style: (documentation changed)
│    │     ├[~] type GeospatialPolygonStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The polygon style for a polygon layer.
│    │     │ └ properties
│    │     │    └ PolygonSymbolStyle: (documentation changed)
│    │     ├[~] type GeospatialPolygonSymbolStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The polygon symbol style for a polygon layer.
│    │     │ └ properties
│    │     │    ├ FillColor: (documentation changed)
│    │     │    ├ StrokeColor: (documentation changed)
│    │     │    └ StrokeWidth: (documentation changed)
│    │     ├[~] type GeospatialSolidColor
│    │     │ ├      - documentation: Describes the properties for a solid color
│    │     │ │      + documentation: The definition for a solid color.
│    │     │ └ properties
│    │     │    ├ Color: (documentation changed)
│    │     │    └ State: (documentation changed)
│    │     ├[~] type GeospatialStaticFileSource
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The source properties for a geospatial static file.
│    │     │ └ properties
│    │     │    └ StaticFileId: (documentation changed)
│    │     ├[~] type HeatMapVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type HistogramVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type ImageCustomAction
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A custom action defined on an image.
│    │     │ └ properties
│    │     │    ├ ActionOperations: (documentation changed)
│    │     │    ├ CustomActionId: (documentation changed)
│    │     │    ├ Name: (documentation changed)
│    │     │    ├ Status: (documentation changed)
│    │     │    └ Trigger: (documentation changed)
│    │     ├[~] type ImageCustomActionOperation
│    │     │ └      - documentation: undefined
│    │     │        + documentation: The operation that is defined by the custom action.
│    │     │        This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
│    │     ├[~] type ImageInteractionOptions
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The general image interactions setup for image publish options.
│    │     │ └ properties
│    │     │    └ ImageMenuOption: (documentation changed)
│    │     ├[~] type ImageMenuOption
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The menu options for the interactions of an image.
│    │     │ └ properties
│    │     │    └ AvailabilityStatus: (documentation changed)
│    │     ├[~] type ImageStaticFile
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A static file that contains an image.
│    │     │ └ properties
│    │     │    ├ Source: (documentation changed)
│    │     │    └ StaticFileId: (documentation changed)
│    │     ├[~] type InsightVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type KPIVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type LayerCustomAction
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A layer custom action.
│    │     │ └ properties
│    │     │    ├ ActionOperations: (documentation changed)
│    │     │    ├ CustomActionId: (documentation changed)
│    │     │    ├ Name: (documentation changed)
│    │     │    ├ Status: (documentation changed)
│    │     │    └ Trigger: (documentation changed)
│    │     ├[~] type LayerCustomActionOperation
│    │     │ └      - documentation: undefined
│    │     │        + documentation: The operation that is defined by the custom action.
│    │     │        This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
│    │     ├[~] type LayerMapVisual
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A layer map visual.
│    │     │ └ properties
│    │     │    ├ ChartConfiguration: (documentation changed)
│    │     │    ├ DataSetIdentifier: (documentation changed)
│    │     │    ├ VisualContentAltText: (documentation changed)
│    │     │    └ VisualId: (documentation changed)
│    │     ├[~] type LineChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type PieChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type PivotTableVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type PluginVisual
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A flexible visualization type that allows engineers to create new custom charts in Amazon QuickSight.
│    │     │ └ properties
│    │     │    ├ ChartConfiguration: (documentation changed)
│    │     │    ├ PluginArn: (documentation changed)
│    │     │    ├ VisualContentAltText: (documentation changed)
│    │     │    └ VisualId: (documentation changed)
│    │     ├[~] type PluginVisualConfiguration
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The plugin visual configuration. This includes the field wells, sorting options, and persisted options of the plugin visual.
│    │     │ └ properties
│    │     │    ├ FieldWells: (documentation changed)
│    │     │    ├ SortConfiguration: (documentation changed)
│    │     │    └ VisualOptions: (documentation changed)
│    │     ├[~] type PluginVisualFieldWell
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A collection of field wells for a plugin visual.
│    │     │ └ properties
│    │     │    ├ AxisName: (documentation changed)
│    │     │    ├ Dimensions: (documentation changed)
│    │     │    ├ Measures: (documentation changed)
│    │     │    └ Unaggregated: (documentation changed)
│    │     ├[~] type PluginVisualItemsLimitConfiguration
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A query limits configuration.
│    │     │ └ properties
│    │     │    └ ItemsLimit: (documentation changed)
│    │     ├[~] type PluginVisualOptions
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The options and persisted properties for the plugin visual.
│    │     │ └ properties
│    │     │    └ VisualProperties: (documentation changed)
│    │     ├[~] type PluginVisualProperty
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The key value pair of the persisted property.
│    │     │ └ properties
│    │     │    ├ Name: (documentation changed)
│    │     │    └ Value: (documentation changed)
│    │     ├[~] type PluginVisualSortConfiguration
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: Determines how the plugin visual sorts the data during query.
│    │     │ └ properties
│    │     │    └ PluginVisualTableQuerySort: (documentation changed)
│    │     ├[~] type PluginVisualTableQuerySort
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The table query sorting options for the plugin visual.
│    │     │ └ properties
│    │     │    ├ ItemsLimitConfiguration: (documentation changed)
│    │     │    └ RowSort: (documentation changed)
│    │     ├[~] type RadarChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type SankeyDiagramVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type ScatterPlotVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type Sheet
│    │     │ └ properties
│    │     │    └ Images: (documentation changed)
│    │     ├[~] type SheetDefinition
│    │     │ └ properties
│    │     │    └ Images: (documentation changed)
│    │     ├[~] type SheetImage
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: An image that is located on a sheet.
│    │     │ └ properties
│    │     │    ├ Actions: (documentation changed)
│    │     │    ├ ImageContentAltText: (documentation changed)
│    │     │    ├ Interactions: (documentation changed)
│    │     │    ├ Scaling: (documentation changed)
│    │     │    ├ SheetImageId: (documentation changed)
│    │     │    ├ Source: (documentation changed)
│    │     │    └ Tooltip: (documentation changed)
│    │     ├[~] type SheetImageScalingConfiguration
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: Determines how the image is scaled
│    │     │ └ properties
│    │     │    └ ScalingType: (documentation changed)
│    │     ├[~] type SheetImageSource
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The source of the image.
│    │     │ └ properties
│    │     │    └ SheetImageStaticFileSource: (documentation changed)
│    │     ├[~] type SheetImageStaticFileSource
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The source of the static file that contains the image.
│    │     │ └ properties
│    │     │    └ StaticFileId: (documentation changed)
│    │     ├[~] type SheetImageTooltipConfiguration
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The tooltip configuration for a sheet image.
│    │     │ └ properties
│    │     │    ├ TooltipText: (documentation changed)
│    │     │    └ Visibility: (documentation changed)
│    │     ├[~] type SheetImageTooltipText
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The text that appears in the sheet image tooltip.
│    │     │ └ properties
│    │     │    └ PlainText: (documentation changed)
│    │     ├[~] type SpatialStaticFile
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A static file that contains the geospatial data.
│    │     │ └ properties
│    │     │    ├ Source: (documentation changed)
│    │     │    └ StaticFileId: (documentation changed)
│    │     ├[~] type StaticFile
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The static file.
│    │     │ └ properties
│    │     │    ├ ImageStaticFile: (documentation changed)
│    │     │    └ SpatialStaticFile: (documentation changed)
│    │     ├[~] type StaticFileS3SourceOptions
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The structure that contains the Amazon S3 location to download the static file from.
│    │     │ └ properties
│    │     │    ├ BucketName: (documentation changed)
│    │     │    ├ ObjectKey: (documentation changed)
│    │     │    └ Region: (documentation changed)
│    │     ├[~] type StaticFileSource
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The source of the static file.
│    │     │ └ properties
│    │     │    ├ S3Options: (documentation changed)
│    │     │    └ UrlOptions: (documentation changed)
│    │     ├[~] type StaticFileUrlSourceOptions
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The structure that contains the URL to download the static file from.
│    │     │ └ properties
│    │     │    └ Url: (documentation changed)
│    │     ├[~] type TableVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type TreeMapVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type Visual
│    │     │ └ properties
│    │     │    ├ LayerMapVisual: (documentation changed)
│    │     │    └ PluginVisual: (documentation changed)
│    │     ├[~] type WaterfallVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     └[~] type WordCloudVisual
│    │       └ properties
│    │          └ VisualContentAltText: (documentation changed)
│    ├[~]  resource AWS::QuickSight::Dashboard
│    │  └ types
│    │     ├[~] type BarChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type BoxPlotVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type ComboChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type CustomContentVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type DashboardVersionDefinition
│    │     │ └ properties
│    │     │    └ StaticFiles: (documentation changed)
│    │     ├[~] type FilledMapVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type FontSize
│    │     │ └ properties
│    │     │    └ Absolute: (documentation changed)
│    │     ├[~] type FunnelChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type GaugeChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type GeospatialCategoricalColor
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The definition for a categorical color.
│    │     │ └ properties
│    │     │    ├ CategoryDataColors: (documentation changed)
│    │     │    ├ DefaultOpacity: (documentation changed)
│    │     │    ├ NullDataSettings: (documentation changed)
│    │     │    └ NullDataVisibility: (documentation changed)
│    │     ├[~] type GeospatialCategoricalDataColor
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The categorical data color for a single category.
│    │     │ └ properties
│    │     │    ├ Color: (documentation changed)
│    │     │    └ DataValue: (documentation changed)
│    │     ├[~] type GeospatialCircleRadius
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The geospatial radius for a circle.
│    │     │ └ properties
│    │     │    └ Radius: (documentation changed)
│    │     ├[~] type GeospatialCircleSymbolStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The properties for a circle symbol style.
│    │     │ └ properties
│    │     │    ├ CircleRadius: (documentation changed)
│    │     │    ├ FillColor: (documentation changed)
│    │     │    ├ StrokeColor: (documentation changed)
│    │     │    └ StrokeWidth: (documentation changed)
│    │     ├[~] type GeospatialColor
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The visualization properties for solid, gradient, and categorical colors.
│    │     │ └ properties
│    │     │    ├ Categorical: (documentation changed)
│    │     │    ├ Gradient: (documentation changed)
│    │     │    └ Solid: (documentation changed)
│    │     ├[~] type GeospatialDataSourceItem
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The data source properties for the geospatial data.
│    │     │ └ properties
│    │     │    └ StaticFileDataSource: (documentation changed)
│    │     ├[~] type GeospatialGradientColor
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The definition for a gradient color.
│    │     │ └ properties
│    │     │    ├ DefaultOpacity: (documentation changed)
│    │     │    ├ NullDataSettings: (documentation changed)
│    │     │    ├ NullDataVisibility: (documentation changed)
│    │     │    └ StepColors: (documentation changed)
│    │     ├[~] type GeospatialGradientStepColor
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The gradient step color for a single step.
│    │     │ └ properties
│    │     │    ├ Color: (documentation changed)
│    │     │    └ DataValue: (documentation changed)
│    │     ├[~] type GeospatialLayerColorField
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The color field that defines a gradient or categorical style.
│    │     │ └ properties
│    │     │    ├ ColorDimensionsFields: (documentation changed)
│    │     │    └ ColorValuesFields: (documentation changed)
│    │     ├[~] type GeospatialLayerDefinition
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The definition properties for a geospatial layer.
│    │     │ └ properties
│    │     │    ├ LineLayer: (documentation changed)
│    │     │    ├ PointLayer: (documentation changed)
│    │     │    └ PolygonLayer: (documentation changed)
│    │     ├[~] type GeospatialLayerItem
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The properties for a single geospatial layer.
│    │     │ └ properties
│    │     │    ├ Actions: (documentation changed)
│    │     │    ├ DataSource: (documentation changed)
│    │     │    ├ JoinDefinition: (documentation changed)
│    │     │    ├ Label: (documentation changed)
│    │     │    ├ LayerDefinition: (documentation changed)
│    │     │    ├ LayerId: (documentation changed)
│    │     │    ├ LayerType: (documentation changed)
│    │     │    └ Visibility: (documentation changed)
│    │     ├[~] type GeospatialLayerJoinDefinition
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The custom actions for a layer.
│    │     │ └ properties
│    │     │    ├ ColorField: (documentation changed)
│    │     │    └ ShapeKeyField: (documentation changed)
│    │     ├[~] type GeospatialLayerMapConfiguration
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The map definition that defines map state, map style, and geospatial layers.
│    │     │ └ properties
│    │     │    ├ MapLayers: (documentation changed)
│    │     │    ├ MapState: (documentation changed)
│    │     │    └ MapStyle: (documentation changed)
│    │     ├[~] type GeospatialLineLayer
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The geospatial Line layer.
│    │     │ └ properties
│    │     │    └ Style: (documentation changed)
│    │     ├[~] type GeospatialLineStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The visualization style for a line layer.
│    │     │ └ properties
│    │     │    └ LineSymbolStyle: (documentation changed)
│    │     ├[~] type GeospatialLineSymbolStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The symbol style for a line layer.
│    │     │ └ properties
│    │     │    ├ FillColor: (documentation changed)
│    │     │    └ LineWidth: (documentation changed)
│    │     ├[~] type GeospatialLineWidth
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The width properties for a line.
│    │     │ └ properties
│    │     │    └ LineWidth: (documentation changed)
│    │     ├[~] type GeospatialMapConfiguration
│    │     │ └ properties
│    │     │    └ Interactions: (documentation changed)
│    │     ├[~] type GeospatialMapState
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The map state properties for a map.
│    │     │ └ properties
│    │     │    └ MapNavigation: (documentation changed)
│    │     ├[~] type GeospatialMapStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The map style properties for a map.
│    │     │ └ properties
│    │     │    ├ BackgroundColor: (documentation changed)
│    │     │    ├ BaseMapStyle: (documentation changed)
│    │     │    └ BaseMapVisibility: (documentation changed)
│    │     ├[~] type GeospatialMapVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type GeospatialNullDataSettings
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The properties for the visualization of null data.
│    │     │ └ properties
│    │     │    └ SymbolStyle: (documentation changed)
│    │     ├[~] type GeospatialNullSymbolStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The symbol style for null data.
│    │     │ └ properties
│    │     │    ├ FillColor: (documentation changed)
│    │     │    ├ StrokeColor: (documentation changed)
│    │     │    └ StrokeWidth: (documentation changed)
│    │     ├[~] type GeospatialPointLayer
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The geospatial Point layer.
│    │     │ └ properties
│    │     │    └ Style: (documentation changed)
│    │     ├[~] type GeospatialPointStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The point style for a point layer.
│    │     │ └ properties
│    │     │    └ CircleSymbolStyle: (documentation changed)
│    │     ├[~] type GeospatialPolygonLayer
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The geospatial polygon layer.
│    │     │ └ properties
│    │     │    └ Style: (documentation changed)
│    │     ├[~] type GeospatialPolygonStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The polygon style for a polygon layer.
│    │     │ └ properties
│    │     │    └ PolygonSymbolStyle: (documentation changed)
│    │     ├[~] type GeospatialPolygonSymbolStyle
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The polygon symbol style for a polygon layer.
│    │     │ └ properties
│    │     │    ├ FillColor: (documentation changed)
│    │     │    ├ StrokeColor: (documentation changed)
│    │     │    └ StrokeWidth: (documentation changed)
│    │     ├[~] type GeospatialSolidColor
│    │     │ ├      - documentation: Describes the properties for a solid color
│    │     │ │      + documentation: The definition for a solid color.
│    │     │ └ properties
│    │     │    ├ Color: (documentation changed)
│    │     │    └ State: (documentation changed)
│    │     ├[~] type GeospatialStaticFileSource
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The source properties for a geospatial static file.
│    │     │ └ properties
│    │     │    └ StaticFileId: (documentation changed)
│    │     ├[~] type HeatMapVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type HistogramVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type ImageCustomAction
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A custom action defined on an image.
│    │     │ └ properties
│    │     │    ├ ActionOperations: (documentation changed)
│    │     │    ├ CustomActionId: (documentation changed)
│    │     │    ├ Name: (documentation changed)
│    │     │    ├ Status: (documentation changed)
│    │     │    └ Trigger: (documentation changed)
│    │     ├[~] type ImageCustomActionOperation
│    │     │ └      - documentation: undefined
│    │     │        + documentation: The operation that is defined by the custom action.
│    │     │        This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
│    │     ├[~] type ImageInteractionOptions
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The general image interactions setup for image publish options.
│    │     │ └ properties
│    │     │    └ ImageMenuOption: (documentation changed)
│    │     ├[~] type ImageMenuOption
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The menu options for the interactions of an image.
│    │     │ └ properties
│    │     │    └ AvailabilityStatus: (documentation changed)
│    │     ├[~] type ImageStaticFile
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A static file that contains an image.
│    │     │ └ properties
│    │     │    ├ Source: (documentation changed)
│    │     │    └ StaticFileId: (documentation changed)
│    │     ├[~] type InsightVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type KPIVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type LayerCustomAction
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A layer custom action.
│    │     │ └ properties
│    │     │    ├ ActionOperations: (documentation changed)
│    │     │    ├ CustomActionId: (documentation changed)
│    │     │    ├ Name: (documentation changed)
│    │     │    ├ Status: (documentation changed)
│    │     │    └ Trigger: (documentation changed)
│    │     ├[~] type LayerCustomActionOperation
│    │     │ └      - documentation: undefined
│    │     │        + documentation: The operation that is defined by the custom action.
│    │     │        This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
│    │     ├[~] type LayerMapVisual
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A layer map visual.
│    │     │ └ properties
│    │     │    ├ ChartConfiguration: (documentation changed)
│    │     │    ├ DataSetIdentifier: (documentation changed)
│    │     │    ├ VisualContentAltText: (documentation changed)
│    │     │    └ VisualId: (documentation changed)
│    │     ├[~] type LineChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type PieChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type PivotTableVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type PluginVisual
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A flexible visualization type that allows engineers to create new custom charts in Amazon QuickSight.
│    │     │ └ properties
│    │     │    ├ ChartConfiguration: (documentation changed)
│    │     │    ├ PluginArn: (documentation changed)
│    │     │    ├ VisualContentAltText: (documentation changed)
│    │     │    └ VisualId: (documentation changed)
│    │     ├[~] type PluginVisualConfiguration
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The plugin visual configuration. This includes the field wells, sorting options, and persisted options of the plugin visual.
│    │     │ └ properties
│    │     │    ├ FieldWells: (documentation changed)
│    │     │    ├ SortConfiguration: (documentation changed)
│    │     │    └ VisualOptions: (documentation changed)
│    │     ├[~] type PluginVisualFieldWell
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A collection of field wells for a plugin visual.
│    │     │ └ properties
│    │     │    ├ AxisName: (documentation changed)
│    │     │    ├ Dimensions: (documentation changed)
│    │     │    ├ Measures: (documentation changed)
│    │     │    └ Unaggregated: (documentation changed)
│    │     ├[~] type PluginVisualItemsLimitConfiguration
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A query limits configuration.
│    │     │ └ properties
│    │     │    └ ItemsLimit: (documentation changed)
│    │     ├[~] type PluginVisualOptions
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The options and persisted properties for the plugin visual.
│    │     │ └ properties
│    │     │    └ VisualProperties: (documentation changed)
│    │     ├[~] type PluginVisualProperty
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The key value pair of the persisted property.
│    │     │ └ properties
│    │     │    ├ Name: (documentation changed)
│    │     │    └ Value: (documentation changed)
│    │     ├[~] type PluginVisualSortConfiguration
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: Determines how the plugin visual sorts the data during query.
│    │     │ └ properties
│    │     │    └ PluginVisualTableQuerySort: (documentation changed)
│    │     ├[~] type PluginVisualTableQuerySort
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The table query sorting options for the plugin visual.
│    │     │ └ properties
│    │     │    ├ ItemsLimitConfiguration: (documentation changed)
│    │     │    └ RowSort: (documentation changed)
│    │     ├[~] type RadarChartVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type SankeyDiagramVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type ScatterPlotVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type Sheet
│    │     │ └ properties
│    │     │    └ Images: (documentation changed)
│    │     ├[~] type SheetDefinition
│    │     │ └ properties
│    │     │    └ Images: (documentation changed)
│    │     ├[~] type SheetImage
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: An image that is located on a sheet.
│    │     │ └ properties
│    │     │    ├ Actions: (documentation changed)
│    │     │    ├ ImageContentAltText: (documentation changed)
│    │     │    ├ Interactions: (documentation changed)
│    │     │    ├ Scaling: (documentation changed)
│    │     │    ├ SheetImageId: (documentation changed)
│    │     │    ├ Source: (documentation changed)
│    │     │    └ Tooltip: (documentation changed)
│    │     ├[~] type SheetImageScalingConfiguration
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: Determines how the image is scaled
│    │     │ └ properties
│    │     │    └ ScalingType: (documentation changed)
│    │     ├[~] type SheetImageSource
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The source of the image.
│    │     │ └ properties
│    │     │    └ SheetImageStaticFileSource: (documentation changed)
│    │     ├[~] type SheetImageStaticFileSource
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The source of the static file that contains the image.
│    │     │ └ properties
│    │     │    └ StaticFileId: (documentation changed)
│    │     ├[~] type SheetImageTooltipConfiguration
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The tooltip configuration for a sheet image.
│    │     │ └ properties
│    │     │    ├ TooltipText: (documentation changed)
│    │     │    └ Visibility: (documentation changed)
│    │     ├[~] type SheetImageTooltipText
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The text that appears in the sheet image tooltip.
│    │     │ └ properties
│    │     │    └ PlainText: (documentation changed)
│    │     ├[~] type SpatialStaticFile
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: A static file that contains the geospatial data.
│    │     │ └ properties
│    │     │    ├ Source: (documentation changed)
│    │     │    └ StaticFileId: (documentation changed)
│    │     ├[~] type StaticFile
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The static file.
│    │     │ └ properties
│    │     │    ├ ImageStaticFile: (documentation changed)
│    │     │    └ SpatialStaticFile: (documentation changed)
│    │     ├[~] type StaticFileS3SourceOptions
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The structure that contains the Amazon S3 location to download the static file from.
│    │     │ └ properties
│    │     │    ├ BucketName: (documentation changed)
│    │     │    ├ ObjectKey: (documentation changed)
│    │     │    └ Region: (documentation changed)
│    │     ├[~] type StaticFileSource
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The source of the static file.
│    │     │ └ properties
│    │     │    ├ S3Options: (documentation changed)
│    │     │    └ UrlOptions: (documentation changed)
│    │     ├[~] type StaticFileUrlSourceOptions
│    │     │ ├      - documentation: undefined
│    │     │ │      + documentation: The structure that contains the URL to download the static file from.
│    │     │ └ properties
│    │     │    └ Url: (documentation changed)
│    │     ├[~] type TableVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type TreeMapVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     ├[~] type Visual
│    │     │ └ properties
│    │     │    ├ LayerMapVisual: (documentation changed)
│    │     │    └ PluginVisual: (documentation changed)
│    │     ├[~] type VisualMenuOption
│    │     │ ├      - documentation: The menu options for a visual.
│    │     │ │      + documentation: undefined
│    │     │ └ properties
│    │     │    └ AvailabilityStatus: (documentation changed)
│    │     ├[~] type WaterfallVisual
│    │     │ └ properties
│    │     │    └ VisualContentAltText: (documentation changed)
│    │     └[~] type WordCloudVisual
│    │       └ properties
│    │          └ VisualContentAltText: (documentation changed)
│    └[~]  resource AWS::QuickSight::Template
│       └ types
│          ├[~] type BarChartVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type BoxPlotVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type ComboChartVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type CustomContentVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type FilledMapVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type FunnelChartVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type GaugeChartVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type GeospatialMapVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type HeatMapVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type HistogramVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type ImageCustomAction
│          │ ├      - documentation: undefined
│          │ │      + documentation: A custom action defined on an image.
│          │ └ properties
│          │    ├ ActionOperations: (documentation changed)
│          │    ├ CustomActionId: (documentation changed)
│          │    ├ Name: (documentation changed)
│          │    ├ Status: (documentation changed)
│          │    └ Trigger: (documentation changed)
│          ├[~] type ImageCustomActionOperation
│          │ └      - documentation: undefined
│          │        + documentation: The operation that is defined by the custom action.
│          │        This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
│          ├[~] type ImageInteractionOptions
│          │ ├      - documentation: undefined
│          │ │      + documentation: The general image interactions setup for image publish options.
│          │ └ properties
│          │    └ ImageMenuOption: (documentation changed)
│          ├[~] type ImageMenuOption
│          │ ├      - documentation: undefined
│          │ │      + documentation: The menu options for the interactions of an image.
│          │ └ properties
│          │    └ AvailabilityStatus: (documentation changed)
│          ├[~] type InsightVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type KPIVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type LineChartVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type PieChartVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type PivotTableVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type PluginVisual
│          │ ├      - documentation: undefined
│          │ │      + documentation: A flexible visualization type that allows engineers to create new custom charts in Amazon QuickSight.
│          │ └ properties
│          │    ├ ChartConfiguration: (documentation changed)
│          │    ├ PluginArn: (documentation changed)
│          │    ├ VisualContentAltText: (documentation changed)
│          │    └ VisualId: (documentation changed)
│          ├[~] type PluginVisualConfiguration
│          │ ├      - documentation: undefined
│          │ │      + documentation: The plugin visual configuration. This includes the field wells, sorting options, and persisted options of the plugin visual.
│          │ └ properties
│          │    ├ FieldWells: (documentation changed)
│          │    ├ SortConfiguration: (documentation changed)
│          │    └ VisualOptions: (documentation changed)
│          ├[~] type PluginVisualFieldWell
│          │ ├      - documentation: undefined
│          │ │      + documentation: A collection of field wells for a plugin visual.
│          │ └ properties
│          │    ├ AxisName: (documentation changed)
│          │    ├ Dimensions: (documentation changed)
│          │    ├ Measures: (documentation changed)
│          │    └ Unaggregated: (documentation changed)
│          ├[~] type PluginVisualItemsLimitConfiguration
│          │ ├      - documentation: undefined
│          │ │      + documentation: A query limits configuration.
│          │ └ properties
│          │    └ ItemsLimit: (documentation changed)
│          ├[~] type PluginVisualOptions
│          │ ├      - documentation: undefined
│          │ │      + documentation: The options and persisted properties for the plugin visual.
│          │ └ properties
│          │    └ VisualProperties: (documentation changed)
│          ├[~] type PluginVisualProperty
│          │ ├      - documentation: undefined
│          │ │      + documentation: The key value pair of the persisted property.
│          │ └ properties
│          │    ├ Name: (documentation changed)
│          │    └ Value: (documentation changed)
│          ├[~] type PluginVisualSortConfiguration
│          │ ├      - documentation: undefined
│          │ │      + documentation: Determines how the plugin visual sorts the data during query.
│          │ └ properties
│          │    └ PluginVisualTableQuerySort: (documentation changed)
│          ├[~] type PluginVisualTableQuerySort
│          │ ├      - documentation: undefined
│          │ │      + documentation: The table query sorting options for the plugin visual.
│          │ └ properties
│          │    ├ ItemsLimitConfiguration: (documentation changed)
│          │    └ RowSort: (documentation changed)
│          ├[~] type RadarChartVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type SankeyDiagramVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type ScatterPlotVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type Sheet
│          │ └ properties
│          │    └ Images: (documentation changed)
│          ├[~] type SheetDefinition
│          │ └ properties
│          │    └ Images: (documentation changed)
│          ├[~] type SheetImage
│          │ ├      - documentation: undefined
│          │ │      + documentation: An image that is located on a sheet.
│          │ └ properties
│          │    ├ Actions: (documentation changed)
│          │    ├ ImageContentAltText: (documentation changed)
│          │    ├ Interactions: (documentation changed)
│          │    ├ Scaling: (documentation changed)
│          │    ├ SheetImageId: (documentation changed)
│          │    ├ Source: (documentation changed)
│          │    └ Tooltip: (documentation changed)
│          ├[~] type SheetImageScalingConfiguration
│          │ ├      - documentation: undefined
│          │ │      + documentation: Determines how the image is scaled
│          │ └ properties
│          │    └ ScalingType: (documentation changed)
│          ├[~] type SheetImageSource
│          │ ├      - documentation: undefined
│          │ │      + documentation: The source of the image.
│          │ └ properties
│          │    └ SheetImageStaticFileSource: (documentation changed)
│          ├[~] type SheetImageStaticFileSource
│          │ ├      - documentation: undefined
│          │ │      + documentation: The source of the static file that contains the image.
│          │ └ properties
│          │    └ StaticFileId: (documentation changed)
│          ├[~] type SheetImageTooltipConfiguration
│          │ ├      - documentation: undefined
│          │ │      + documentation: The tooltip configuration for a sheet image.
│          │ └ properties
│          │    ├ TooltipText: (documentation changed)
│          │    └ Visibility: (documentation changed)
│          ├[~] type SheetImageTooltipText
│          │ ├      - documentation: undefined
│          │ │      + documentation: The text that appears in the sheet image tooltip.
│          │ └ properties
│          │    └ PlainText: (documentation changed)
│          ├[~] type TableVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type TreeMapVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          ├[~] type Visual
│          │ └ properties
│          │    └ PluginVisual: (documentation changed)
│          ├[~] type WaterfallVisual
│          │ └ properties
│          │    └ VisualContentAltText: (documentation changed)
│          └[~] type WordCloudVisual
│            └ properties
│               └ VisualContentAltText: (documentation changed)
├[~] service aws-rds
│ └ resources
│    └[~]  resource AWS::RDS::DBCluster
│       └ properties
│          └ EnableHttpEndpoint: (documentation changed)
└[~] service aws-sagemaker
  └ resources
     ├[~]  resource AWS::SageMaker::Model
     │  └ types
     │     └[~] type S3DataSource
     │       └ properties
     │          └ S3DataType: (documentation changed)
     └[~]  resource AWS::SageMaker::ModelPackage
        └ types
           ├[~] type ModelPackageContainerDefinition
           │ └ properties
           │    └ Image: (documentation changed)
           └[~] type S3DataSource
             └ properties
                └ S3DataType: (documentation changed)

Updates the L1 CloudFormation resource definitions with the latest changes from `@aws-cdk/aws-service-spec`
@aws-cdk-automation aws-cdk-automation added auto-approve contribution/core This is a PR that came from AWS. dependencies This issue is a problem in a dependency or a pull request that updates a dependency file. pr-linter/exempt-readme The PR linter will not require README changes pr-linter/exempt-test The PR linter will not require test changes pr-linter/exempt-integ-test The PR linter will not require integ test changes labels Jan 6, 2025
@aws-cdk-automation aws-cdk-automation requested a review from a team January 6, 2025 17:59
@github-actions github-actions bot added the p2 label Jan 6, 2025
@aws-cdk-automation aws-cdk-automation requested a review from a team January 6, 2025 17:59
Copy link

codecov bot commented Jan 6, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 81.38%. Comparing base (6e26c1b) to head (09ed819).

Additional details and impacted files
@@           Coverage Diff           @@
##             main   #32755   +/-   ##
=======================================
  Coverage   81.38%   81.38%           
=======================================
  Files         222      222           
  Lines       13750    13750           
  Branches     2424     2424           
=======================================
  Hits        11191    11191           
  Misses       2279     2279           
  Partials      280      280           
Flag Coverage Δ
suite.unit 81.38% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Components Coverage Δ
packages/aws-cdk 80.71% <ø> (ø)
packages/aws-cdk-lib/core 82.09% <ø> (ø)

@moelasmar moelasmar added pr/do-not-merge This PR should not be merged at this time. and removed pr/do-not-merge This PR should not be merged at this time. labels Jan 6, 2025
Copy link
Contributor

mergify bot commented Jan 6, 2025

Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork).

Copy link
Contributor

mergify bot commented Jan 6, 2025

This pull request has been removed from the queue for the following reason: checks failed.

The merge conditions cannot be satisfied due to failing checks:

You should look at the reason for the failure and decide if the pull request needs to be fixed or if you want to requeue it.

If you want to requeue this pull request, you need to post a comment with the text: @mergifyio requeue

@aws-cdk-automation
Copy link
Collaborator Author

AWS CodeBuild CI Report

  • CodeBuild project: AutoBuildv2Project1C6BFA3F-wQm2hXv2jqQv
  • Commit ID: 09ed819
  • Result: SUCCEEDED
  • Build Logs (available for 30 days)

Powered by github-codebuild-logs, available on the AWS Serverless Application Repository

Copy link
Contributor

mergify bot commented Jan 6, 2025

Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork).

@mergify mergify bot merged commit 8f97112 into main Jan 6, 2025
19 checks passed
@mergify mergify bot deleted the automation/spec-update branch January 6, 2025 19:21
Copy link

github-actions bot commented Jan 6, 2025

Comments on closed issues and PRs are hard for our team to see.
If you need help, please open a new issue that references this one.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jan 6, 2025
@github-actions github-actions bot added bug This issue is a bug. p0 and removed p2 labels Jan 6, 2025
@aws-cdk-automation aws-cdk-automation added the pr/needs-maintainer-review This PR needs a review from a Core Team Member label Jan 6, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
auto-approve bug This issue is a bug. contribution/core This is a PR that came from AWS. dependencies This issue is a problem in a dependency or a pull request that updates a dependency file. p0 pr/needs-maintainer-review This PR needs a review from a Core Team Member pr-linter/exempt-integ-test The PR linter will not require integ test changes pr-linter/exempt-readme The PR linter will not require README changes pr-linter/exempt-test The PR linter will not require test changes
Projects
None yet
2 participants