From 6e26c1b1f6e087c1da5b6f30dab76d7316f426c3 Mon Sep 17 00:00:00 2001 From: KIDANI Akito Date: Tue, 7 Jan 2025 03:28:50 +0900 Subject: [PATCH 1/2] docs(elasticloadbalancingv2): fix typos (#32721) ### Issue # (if applicable) N/A ### Reason for this change Fixed typos in the README.md ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/aws-cdk-lib/aws-elasticloadbalancingv2/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/aws-cdk-lib/aws-elasticloadbalancingv2/README.md b/packages/aws-cdk-lib/aws-elasticloadbalancingv2/README.md index f55effba63631..d780b7bb410cb 100644 --- a/packages/aws-cdk-lib/aws-elasticloadbalancingv2/README.md +++ b/packages/aws-cdk-lib/aws-elasticloadbalancingv2/README.md @@ -212,7 +212,7 @@ const lb = new elbv2.ApplicationLoadBalancer(this, 'LB', { // The idle timeout value, in seconds idleTimeout: Duration.seconds(1000), - // Whether HTTP headers with header fields thatare not valid + // Whether HTTP headers with header fields that are not valid // are removed by the load balancer (true), or routed to targets dropInvalidHeaderFields: true, @@ -578,7 +578,7 @@ You can set cross-zone load balancing setting at the target group level by setti If not specified, it will use the load balancer's configuration. -For more infomation, see [How Elastic Load Balancing works](https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html). +For more information, see [How Elastic Load Balancing works](https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/how-elastic-load-balancing-works.html). ```ts declare const vpc: ec2.Vpc; @@ -809,7 +809,7 @@ Node.of(resource).addDependency(targetGroup.loadBalancerAttached); You may look up load balancers and load balancer listeners by using one of the following lookup methods: -- `ApplicationLoadBalancer.fromlookup(options)` - Look up an application load +- `ApplicationLoadBalancer.fromLookup(options)` - Look up an application load balancer. - `ApplicationListener.fromLookup(options)` - Look up an application load balancer listener. From 8f97112c89c6b39e299b0cd437336bab11cfdaf8 Mon Sep 17 00:00:00 2001 From: AWS CDK Automation <43080478+aws-cdk-automation@users.noreply.github.com> Date: Mon, 6 Jan 2025 11:21:25 -0800 Subject: [PATCH 2/2] feat: update L1 CloudFormation resource definitions (#32755) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 ⇐ Array │ │ + Array │ ├[~] type EcsTaskProperties │ │ └ properties │ │ └ Volumes: - Array │ │ + Array │ ├[~] 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 │ │ + Array │ ├[~] type MultiNodeEcsTaskProperties │ │ └ properties │ │ └ Volumes: - Array │ │ + Array │ ├[-] 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 (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) ``` --- .../@aws-cdk/cloudformation-diff/package.json | 4 ++-- packages/@aws-cdk/integ-runner/package.json | 2 +- packages/aws-cdk-lib/package.json | 2 +- tools/@aws-cdk/spec2cdk/package.json | 4 ++-- yarn.lock | 18 +++++++++--------- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/packages/@aws-cdk/cloudformation-diff/package.json b/packages/@aws-cdk/cloudformation-diff/package.json index 7cac96e64d28a..b3e74311b9ab9 100644 --- a/packages/@aws-cdk/cloudformation-diff/package.json +++ b/packages/@aws-cdk/cloudformation-diff/package.json @@ -23,8 +23,8 @@ }, "license": "Apache-2.0", "dependencies": { - "@aws-cdk/aws-service-spec": "^0.1.44", - "@aws-cdk/service-spec-types": "^0.0.110", + "@aws-cdk/aws-service-spec": "^0.1.45", + "@aws-cdk/service-spec-types": "^0.0.111", "chalk": "^4", "diff": "^5.2.0", "fast-deep-equal": "^3.1.3", diff --git a/packages/@aws-cdk/integ-runner/package.json b/packages/@aws-cdk/integ-runner/package.json index 7fc87a20f695f..7785c111b142d 100644 --- a/packages/@aws-cdk/integ-runner/package.json +++ b/packages/@aws-cdk/integ-runner/package.json @@ -75,7 +75,7 @@ "@aws-cdk/cloud-assembly-schema": "^39.0.0", "@aws-cdk/cloudformation-diff": "0.0.0", "@aws-cdk/cx-api": "0.0.0", - "@aws-cdk/aws-service-spec": "^0.1.44", + "@aws-cdk/aws-service-spec": "^0.1.45", "cdk-assets": "3.0.0-rc.111", "@aws-cdk/cdk-cli-wrapper": "0.0.0", "aws-cdk": "0.0.0", diff --git a/packages/aws-cdk-lib/package.json b/packages/aws-cdk-lib/package.json index de07ab9c30622..5cbbda27f6d17 100644 --- a/packages/aws-cdk-lib/package.json +++ b/packages/aws-cdk-lib/package.json @@ -136,7 +136,7 @@ "mime-types": "^2.1.35" }, "devDependencies": { - "@aws-cdk/aws-service-spec": "^0.1.44", + "@aws-cdk/aws-service-spec": "^0.1.45", "@aws-cdk/cdk-build-tools": "0.0.0", "@aws-cdk/custom-resource-handlers": "0.0.0", "@aws-cdk/pkglint": "0.0.0", diff --git a/tools/@aws-cdk/spec2cdk/package.json b/tools/@aws-cdk/spec2cdk/package.json index 1a25d6693b935..c3fdeff135b65 100644 --- a/tools/@aws-cdk/spec2cdk/package.json +++ b/tools/@aws-cdk/spec2cdk/package.json @@ -32,9 +32,9 @@ }, "license": "Apache-2.0", "dependencies": { - "@aws-cdk/aws-service-spec": "^0.1.44", + "@aws-cdk/aws-service-spec": "^0.1.45", "@aws-cdk/service-spec-importers": "^0.0.62", - "@aws-cdk/service-spec-types": "^0.0.110", + "@aws-cdk/service-spec-types": "^0.0.111", "@cdklabs/tskb": "^0.0.3", "@cdklabs/typewriter": "^0.0.3", "camelcase": "^6", diff --git a/yarn.lock b/yarn.lock index 0a6b6b3688aa3..680fa44ee0f5b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -63,12 +63,12 @@ resolved "https://registry.npmjs.org/@aws-cdk/asset-node-proxy-agent-v6/-/asset-node-proxy-agent-v6-2.1.0.tgz#6d3c7860354d4856a7e75375f2f0ecab313b4989" integrity sha512-7bY3J8GCVxLupn/kNmpPc5VJz8grx+4RKfnnJiO1LG+uxkZfANZG3RMHhE+qQxxwkyQ9/MfPtTpf748UhR425A== -"@aws-cdk/aws-service-spec@^0.1.44": - version "0.1.44" - resolved "https://registry.npmjs.org/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.44.tgz#eb43f18346433a4d87871e98cbab4697b3b7f126" - integrity sha512-t21QOjnBwskftloYVzSi8g2Ls6u4sGG2eLY5WB9PMZ3Mhnv2V1L81sZ8I8Uoe9TSzjHlCvew5SYAFkXKdeqnaQ== +"@aws-cdk/aws-service-spec@^0.1.45": + version "0.1.45" + resolved "https://registry.npmjs.org/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.45.tgz#2f2ca43007ff469f21a134c7730ef58cf97c7be5" + integrity sha512-Bus8BdIAHEvEbzavb2WXFYbkfktWPS+vqWd07RjryNT9Qqh/YiMgjUF3RFRBhtV3Obu7XZfbXbWkNJWvsWvY4g== dependencies: - "@aws-cdk/service-spec-types" "^0.0.110" + "@aws-cdk/service-spec-types" "^0.0.111" "@cdklabs/tskb" "^0.0.3" "@aws-cdk/cloud-assembly-schema@^39.0.0", "@aws-cdk/cloud-assembly-schema@^39.0.1", "@aws-cdk/cloud-assembly-schema@^39.1.34": @@ -129,10 +129,10 @@ dependencies: "@cdklabs/tskb" "^0.0.3" -"@aws-cdk/service-spec-types@^0.0.110": - version "0.0.110" - resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.110.tgz#8eb340306cb8de5038c9254fce97edb6036fc22f" - integrity sha512-ms9LK1lboCFh8FZrmR1X5VWUP6PnfYsm+RsvRDHRMRZ4ohJHwX7anOdWU2qduoAReaPDVP4G6HRjQC418UXCEg== +"@aws-cdk/service-spec-types@^0.0.111": + version "0.0.111" + resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.111.tgz#7b264494eed118bedc8ce445f2ff38f3772eda02" + integrity sha512-/LElEMPhkqOHbLlnRZ3T621qxNuPWuMfGTElJzphllS/Xh44/UrNETKqLnnsRgsRVBj/vBwpPquLLfHiJwtWbg== dependencies: "@cdklabs/tskb" "^0.0.3"