Skip to content

Commit 9e6bb24

Browse files
feat: update L1 CloudFormation resource definitions (#32356)
Updates the L1 CloudFormation resource definitions with the latest changes from `@aws-cdk/aws-service-spec` **L1 CloudFormation resource definition changes:** ``` ├[~] service aws-apigateway │ └ resources │ ├[+] resource AWS::ApiGateway::BasePathMappingV2 │ │ ├ name: BasePathMappingV2 │ │ │ cloudFormationType: AWS::ApiGateway::BasePathMappingV2 │ │ │ documentation: Resource Type definition for AWS::ApiGateway::BasePathMappingV2 │ │ ├ properties │ │ │ ├BasePath: string (immutable) │ │ │ ├DomainNameArn: string (required, immutable) │ │ │ ├RestApiId: string (required) │ │ │ └Stage: string │ │ └ attributes │ │ └BasePathMappingArn: string │ ├[+] resource AWS::ApiGateway::DomainNameAccessAssociation │ │ ├ name: DomainNameAccessAssociation │ │ │ cloudFormationType: AWS::ApiGateway::DomainNameAccessAssociation │ │ │ documentation: Resource Type definition for AWS::ApiGateway::DomainNameAccessAssociation. │ │ │ tagInformation: {"tagPropertyName":"Tags","variant":"standard"} │ │ ├ properties │ │ │ ├DomainNameArn: string (required, immutable) │ │ │ ├AccessAssociationSource: string (required, immutable) │ │ │ ├AccessAssociationSourceType: string (required, immutable) │ │ │ └Tags: Array<tag> (immutable) │ │ └ attributes │ │ └DomainNameAccessAssociationArn: string │ └[+] resource AWS::ApiGateway::DomainNameV2 │ ├ name: DomainNameV2 │ │ cloudFormationType: AWS::ApiGateway::DomainNameV2 │ │ documentation: Resource Type definition for AWS::ApiGateway::DomainNameV2. │ │ tagInformation: {"tagPropertyName":"Tags","variant":"standard"} │ ├ properties │ │ ├CertificateArn: string │ │ ├DomainName: string (immutable) │ │ ├EndpointConfiguration: EndpointConfiguration (immutable) │ │ ├SecurityPolicy: string (immutable) │ │ ├Policy: json | string │ │ ├Tags: Array<tag> │ │ └ManagementPolicy: json | string │ ├ attributes │ │ ├DomainNameId: string │ │ └DomainNameArn: string │ └ types │ └type EndpointConfiguration │ ├ name: EndpointConfiguration │ └ properties │ └Types: Array<string> ├[~] service aws-chatbot │ └ resources │ ├[+] resource AWS::Chatbot::CustomAction │ │ ├ name: CustomAction │ │ │ cloudFormationType: AWS::Chatbot::CustomAction │ │ │ documentation: Definition of AWS::Chatbot::CustomAction Resource Type │ │ │ tagInformation: {"tagPropertyName":"Tags","variant":"standard"} │ │ ├ properties │ │ │ ├ActionName: string (required, immutable) │ │ │ ├AliasName: string │ │ │ ├Attachments: Array<CustomActionAttachment> │ │ │ ├Definition: CustomActionDefinition (required) │ │ │ └Tags: Array<tag> │ │ ├ attributes │ │ │ └CustomActionArn: string │ │ └ types │ │ ├type CustomActionAttachment │ │ │├ name: CustomActionAttachment │ │ │└ properties │ │ │ ├NotificationType: string │ │ │ ├ButtonText: string │ │ │ ├Criteria: Array<CustomActionAttachmentCriteria> │ │ │ └Variables: Map<string, string> │ │ ├type CustomActionAttachmentCriteria │ │ │├ name: CustomActionAttachmentCriteria │ │ │└ properties │ │ │ ├Operator: string (required) │ │ │ ├VariableName: string (required) │ │ │ └Value: string │ │ └type CustomActionDefinition │ │ ├ name: CustomActionDefinition │ │ └ properties │ │ └CommandText: string (required) │ ├[~] resource AWS::Chatbot::MicrosoftTeamsChannelConfiguration │ │ └ properties │ │ └[+] CustomizationResourceArns: Array<string> │ └[~] resource AWS::Chatbot::SlackChannelConfiguration │ └ properties │ └[+] CustomizationResourceArns: Array<string> ├[~] service aws-cloudtrail │ └ resources │ └[+] resource AWS::CloudTrail::Dashboard │ ├ name: Dashboard │ │ cloudFormationType: AWS::CloudTrail::Dashboard │ │ documentation: The Amazon CloudTrail dashboard resource allows customers to manage managed dashboards and create custom dashboards. You can manually refresh custom and managed dashboards. For custom dashboards, you can also set up an automatic refresh schedule and modify dashboard widgets. │ │ tagInformation: {"tagPropertyName":"Tags","variant":"standard"} │ ├ properties │ │ ├Widgets: Array<Widget> │ │ ├RefreshSchedule: RefreshSchedule │ │ ├Name: string │ │ ├TerminationProtectionEnabled: boolean │ │ └Tags: Array<tag> │ ├ attributes │ │ ├DashboardArn: string │ │ ├CreatedTimestamp: string │ │ ├UpdatedTimestamp: string │ │ ├Status: string │ │ └Type: string │ └ types │ ├type Widget │ │├ documentation: The dashboard widget │ ││ name: Widget │ │└ properties │ │ ├QueryStatement: string (required) │ │ ├QueryParameters: Array<string> │ │ └ViewProperties: Map<string, string> │ ├type RefreshSchedule │ │├ documentation: Configures the automatic refresh schedule for the dashboard. Includes the frequency unit (DAYS or HOURS) and value, as well as the status (ENABLED or DISABLED) of the refresh schedule. │ ││ name: RefreshSchedule │ │└ properties │ │ ├Frequency: Frequency │ │ ├TimeOfDay: string │ │ └Status: string │ └type Frequency │ ├ name: Frequency │ └ properties │ ├Unit: string (required) │ └Value: integer (required) ├[~] service aws-cognito │ └ resources │ ├[+] resource AWS::Cognito::ManagedLoginBranding │ │ ├ name: ManagedLoginBranding │ │ │ cloudFormationType: AWS::Cognito::ManagedLoginBranding │ │ │ documentation: Resource Type definition for AWS::Cognito::ManagedLoginBranding │ │ ├ properties │ │ │ ├UserPoolId: string (required, immutable) │ │ │ ├ClientId: string (immutable) │ │ │ ├UseCognitoProvidedValues: boolean │ │ │ ├Settings: json │ │ │ ├Assets: Array<AssetType> │ │ │ └ReturnMergedResources: boolean │ │ ├ attributes │ │ │ └ManagedLoginBrandingId: string │ │ └ types │ │ └type AssetType │ │ ├ name: AssetType │ │ └ properties │ │ ├Category: string (required) │ │ ├ColorMode: string (required) │ │ ├Extension: string (required) │ │ ├Bytes: string │ │ └ResourceId: string │ └[~] resource AWS::Cognito::UserPool │ ├ properties │ │ ├[+] UserPoolTier: string │ │ ├[+] WebAuthnRelyingPartyID: string │ │ └[+] WebAuthnUserVerification: string │ └ types │ ├[~] type Policies │ │ └ properties │ │ └[+] SignInPolicy: SignInPolicy │ └[+] type SignInPolicy │ ├ name: SignInPolicy │ └ properties │ └AllowedFirstAuthFactors: Array<string> ├[~] service aws-connect │ └ resources │ └[~] resource AWS::Connect::HoursOfOperation │ ├ properties │ │ └[+] HoursOfOperationOverrides: Array<HoursOfOperationOverride> │ └ types │ ├[+] type HoursOfOperationOverride │ │ ├ documentation: Overrides attached to the hours of operation. │ │ │ name: HoursOfOperationOverride │ │ └ properties │ │ ├OverrideName: string (required) │ │ ├OverrideDescription: string │ │ ├EffectiveFrom: string (required) │ │ ├EffectiveTill: string (required) │ │ ├OverrideConfig: Array<HoursOfOperationOverrideConfig> (required) │ │ └HoursOfOperationOverrideId: string │ ├[+] type HoursOfOperationOverrideConfig │ │ ├ documentation: Contains information about the hours of operation override. │ │ │ name: HoursOfOperationOverrideConfig │ │ └ properties │ │ ├Day: string (required) │ │ ├StartTime: OverrideTimeSlice (required) │ │ └EndTime: OverrideTimeSlice (required) │ └[+] type OverrideTimeSlice │ ├ documentation: The start time or end time for an an hours of operation override. │ │ name: OverrideTimeSlice │ └ properties │ ├Hours: integer (required) │ └Minutes: integer (required) ├[~] service aws-customerprofiles │ └ resources │ └[+] resource AWS::CustomerProfiles::SegmentDefinition │ ├ name: SegmentDefinition │ │ cloudFormationType: AWS::CustomerProfiles::SegmentDefinition │ │ documentation: A segment definition resource of Amazon Connect Customer Profiles. │ │ tagInformation: {"tagPropertyName":"Tags","variant":"standard"} │ ├ properties │ │ ├Description: string │ │ ├DisplayName: string (required, immutable) │ │ ├DomainName: string (required, immutable) │ │ ├SegmentDefinitionName: string (required, immutable) │ │ ├SegmentGroups: SegmentGroup (required, immutable) │ │ └Tags: Array<tag> │ ├ attributes │ │ ├CreatedAt: string │ │ └SegmentDefinitionArn: string │ └ types │ ├type SegmentGroup │ │├ documentation: Contains all groups of the segment definition. │ ││ name: SegmentGroup │ │└ properties │ │ ├Groups: Array<Group> │ │ └Include: string │ ├type Group │ │├ documentation: Contains dimensions that determine what to segment on. │ ││ name: Group │ │└ properties │ │ ├Dimensions: Array<Dimension> │ │ ├SourceSegments: Array<SourceSegment> │ │ ├SourceType: string │ │ └Type: string │ ├type Dimension │ │├ documentation: Defines the attribute to segment on. │ ││ name: Dimension │ │└ properties │ │ ├ProfileAttributes: ProfileAttributes │ │ └CalculatedAttributes: Map<string, CalculatedAttributeDimension> │ ├type ProfileAttributes │ │├ documentation: The object used to segment on attributes within the customer profile. │ ││ name: ProfileAttributes │ │└ properties │ │ ├AccountNumber: ProfileDimension │ │ ├AdditionalInformation: ExtraLengthValueProfileDimension │ │ ├FirstName: ProfileDimension │ │ ├LastName: ProfileDimension │ │ ├MiddleName: ProfileDimension │ │ ├GenderString: ProfileDimension │ │ ├PartyTypeString: ProfileDimension │ │ ├BirthDate: DateDimension │ │ ├PhoneNumber: ProfileDimension │ │ ├BusinessName: ProfileDimension │ │ ├BusinessPhoneNumber: ProfileDimension │ │ ├HomePhoneNumber: ProfileDimension │ │ ├MobilePhoneNumber: ProfileDimension │ │ ├EmailAddress: ProfileDimension │ │ ├PersonalEmailAddress: ProfileDimension │ │ ├BusinessEmailAddress: ProfileDimension │ │ ├Address: AddressDimension │ │ ├ShippingAddress: AddressDimension │ │ ├MailingAddress: AddressDimension │ │ ├BillingAddress: AddressDimension │ │ └Attributes: Map<string, AttributeDimension> │ ├type ProfileDimension │ │├ documentation: Object that segments on various Customer profile's fields that are larger than normal. │ ││ name: ProfileDimension │ │└ properties │ │ ├DimensionType: string (required) │ │ └Values: Array<string> (required) │ ├type ExtraLengthValueProfileDimension │ │├ documentation: Object that segments on various Customer profile's fields that are larger than normal. │ ││ name: ExtraLengthValueProfileDimension │ │└ properties │ │ ├DimensionType: string (required) │ │ └Values: Array<string> (required) │ ├type DateDimension │ │├ documentation: Object that segments on various Customer Profile's date fields. │ ││ name: DateDimension │ │└ properties │ │ ├DimensionType: string (required) │ │ └Values: Array<string> (required) │ ├type AddressDimension │ │├ documentation: Object that segments on Customer Profile's address object. │ ││ name: AddressDimension │ │└ properties │ │ ├City: ProfileDimension │ │ ├Country: ProfileDimension │ │ ├County: ProfileDimension │ │ ├PostalCode: ProfileDimension │ │ ├Province: ProfileDimension │ │ └State: ProfileDimension │ ├type AttributeDimension │ │├ documentation: Object that defines how to filter the incoming objects for the calculated attribute. │ ││ name: AttributeDimension │ │└ properties │ │ ├DimensionType: string (required) │ │ └Values: Array<string> (required) │ ├type CalculatedAttributeDimension │ │├ documentation: Object that segments on Customer Profile's Calculated Attributes. │ ││ name: CalculatedAttributeDimension │ │└ properties │ │ ├DimensionType: string (required) │ │ ├Values: Array<string> (required) │ │ └ConditionOverrides: ConditionOverrides │ ├type ConditionOverrides │ │├ documentation: An object to override the original condition block of a calculated attribute. │ ││ name: ConditionOverrides │ │└ properties │ │ └Range: RangeOverride │ ├type RangeOverride │ │├ documentation: Overrides the original range on a calculated attribute definition. │ ││ name: RangeOverride │ │└ properties │ │ ├Start: integer (required) │ │ ├End: integer │ │ └Unit: string (required) │ └type SourceSegment │ ├ documentation: The source segments to build off of. │ │ name: SourceSegment │ └ properties │ └SegmentDefinitionName: string ├[~] service aws-ec2 │ └ resources │ ├[~] resource AWS::EC2::LaunchTemplate │ │ └ types │ │ ├[+] type BaselinePerformanceFactors │ │ │ ├ name: BaselinePerformanceFactors │ │ │ └ properties │ │ │ └Cpu: Cpu │ │ ├[+] type Cpu │ │ │ ├ name: Cpu │ │ │ └ properties │ │ │ └References: Array<Reference> │ │ ├[~] type InstanceRequirements │ │ │ └ properties │ │ │ └[+] BaselinePerformanceFactors: BaselinePerformanceFactors │ │ └[+] type Reference │ │ ├ name: Reference │ │ └ properties │ │ └InstanceFamily: string │ ├[+] resource AWS::EC2::VPCBlockPublicAccessExclusion │ │ ├ name: VPCBlockPublicAccessExclusion │ │ │ cloudFormationType: AWS::EC2::VPCBlockPublicAccessExclusion │ │ │ documentation: Resource Type definition for AWS::EC2::VPCBlockPublicAccessExclusion. │ │ │ tagInformation: {"tagPropertyName":"Tags","variant":"standard"} │ │ ├ properties │ │ │ ├InternetGatewayExclusionMode: string (required) │ │ │ ├VpcId: string (immutable) │ │ │ ├SubnetId: string (immutable) │ │ │ └Tags: Array<tag> │ │ └ attributes │ │ └ExclusionId: string │ └[+] resource AWS::EC2::VPCBlockPublicAccessOptions │ ├ name: VPCBlockPublicAccessOptions │ │ cloudFormationType: AWS::EC2::VPCBlockPublicAccessOptions │ │ documentation: Resource Type definition for AWS::EC2::VPCBlockPublicAccessOptions │ ├ properties │ │ └InternetGatewayBlockMode: string (required) │ └ attributes │ └AccountId: string ├[~] service aws-eks │ └ resources │ └[~] resource AWS::EKS::Cluster │ ├ properties │ │ ├[+] ComputeConfig: ComputeConfig │ │ ├[+] RemoteNetworkConfig: RemoteNetworkConfig (immutable) │ │ └[+] StorageConfig: StorageConfig │ └ types │ ├[+] type BlockStorage │ │ ├ documentation: Todo: add description │ │ │ name: BlockStorage │ │ └ properties │ │ └Enabled: boolean │ ├[+] type ComputeConfig │ │ ├ documentation: Todo: add description │ │ │ name: ComputeConfig │ │ └ properties │ │ ├Enabled: boolean │ │ ├NodeRoleArn: string │ │ └NodePools: Array<string> │ ├[+] type ElasticLoadBalancing │ │ ├ documentation: Todo: add description │ │ │ name: ElasticLoadBalancing │ │ └ properties │ │ └Enabled: boolean │ ├[~] type KubernetesNetworkConfig │ │ └ properties │ │ └[+] ElasticLoadBalancing: ElasticLoadBalancing │ ├[+] type RemoteNetworkConfig │ │ ├ documentation: Configuration fields for specifying on-premises node and pod CIDRs that are external to the VPC passed during cluster creation. │ │ │ name: RemoteNetworkConfig │ │ └ properties │ │ ├RemoteNodeNetworks: Array<RemoteNodeNetwork> (required) │ │ └RemotePodNetworks: Array<RemotePodNetwork> │ ├[+] type RemoteNodeNetwork │ │ ├ documentation: Network configuration of nodes run on-premises with EKS Hybrid Nodes. │ │ │ name: RemoteNodeNetwork │ │ └ properties │ │ └Cidrs: Array<string> (required) │ ├[+] type RemotePodNetwork │ │ ├ documentation: Network configuration of pods run on-premises with EKS Hybrid Nodes. │ │ │ name: RemotePodNetwork │ │ └ properties │ │ └Cidrs: Array<string> (required) │ └[+] type StorageConfig │ ├ documentation: Todo: add description │ │ name: StorageConfig │ └ properties │ └BlockStorage: BlockStorage ├[~] service aws-elasticloadbalancingv2 │ └ resources │ └[~] resource AWS::ElasticLoadBalancingV2::LoadBalancer │ ├ properties │ │ └[+] MinimumLoadBalancerCapacity: MinimumLoadBalancerCapacity │ └ types │ └[+] type MinimumLoadBalancerCapacity │ ├ name: MinimumLoadBalancerCapacity │ └ properties │ └CapacityUnits: integer (required) ├[~] service aws-events │ └ resources │ └[~] resource AWS::Events::Connection │ ├ properties │ │ └[+] InvocationConnectivityParameters: InvocationConnectivityParameters │ ├ attributes │ │ ├[+] AuthParameters.ConnectivityParameters.ResourceParameters.ResourceAssociationArn: string │ │ └[+] InvocationConnectivityParameters.ResourceParameters.ResourceAssociationArn: string │ └ types │ ├[~] type AuthParameters │ │ └ properties │ │ └[+] ConnectivityParameters: ConnectivityParameters │ ├[+] type ConnectivityParameters │ │ ├ name: ConnectivityParameters │ │ └ properties │ │ └ResourceParameters: ResourceParameters (required) │ ├[+] type InvocationConnectivityParameters │ │ ├ documentation: The private resource the HTTP request will be sent to. │ │ │ name: InvocationConnectivityParameters │ │ └ properties │ │ └ResourceParameters: ResourceParameters (required) │ └[+] type ResourceParameters │ ├ name: ResourceParameters │ └ properties │ ├ResourceConfigurationArn: string (required) │ └ResourceAssociationArn: string ├[~] service aws-iot │ └ resources │ └[~] resource AWS::IoT::DomainConfiguration │ └ types │ └[~] type ServerCertificateConfig │ └ properties │ ├[+] OcspAuthorizedResponderArn: string │ └[+] OcspLambdaArn: string ├[~] service aws-iotfleetwise │ └ resources │ ├[~] resource AWS::IoTFleetWise::DecoderManifest │ │ └ properties │ │ └[+] DefaultForUnmappedSignals: string │ └[+] resource AWS::IoTFleetWise::StateTemplate │ ├ name: StateTemplate │ │ cloudFormationType: AWS::IoTFleetWise::StateTemplate │ │ documentation: Definition of AWS::IoTFleetWise::StateTemplate Resource Type │ │ tagInformation: {"tagPropertyName":"Tags","variant":"standard"} │ ├ properties │ │ ├Description: string │ │ ├Name: string (required, immutable) │ │ ├SignalCatalogArn: string (required, immutable) │ │ ├StateTemplateProperties: Array<string> (required) │ │ ├DataExtraDimensions: Array<string> │ │ ├MetadataExtraDimensions: Array<string> │ │ └Tags: Array<tag> │ └ attributes │ ├Arn: string │ ├CreationTime: string │ └LastModificationTime: string ├[~] service aws-iotsitewise │ └ resources │ └[~] resource AWS::IoTSiteWise::Portal │ ├ properties │ │ ├[+] PortalType: string (immutable) │ │ └[+] PortalTypeConfiguration: Map<string, PortalTypeEntry> │ └ types │ └[+] type PortalTypeEntry │ ├ documentation: Container associated a certain PortalType. │ │ name: PortalTypeEntry │ └ properties │ └PortalTools: Array<string> (required) ├[~] service aws-lambda │ └ resources │ └[~] resource AWS::Lambda::EventSourceMapping │ ├ properties │ │ └[+] ProvisionedPollerConfig: ProvisionedPollerConfig │ └ types │ └[+] type ProvisionedPollerConfig │ ├ name: ProvisionedPollerConfig │ └ properties │ ├MinimumPollers: integer │ └MaximumPollers: integer ├[~] service aws-m2 │ └ resources │ └[+] resource AWS::M2::Deployment │ ├ name: Deployment │ │ cloudFormationType: AWS::M2::Deployment │ │ documentation: Represents a deployment resource of an AWS Mainframe Modernization (M2) application to a specified environment │ ├ properties │ │ ├EnvironmentId: string (required, immutable) │ │ ├ApplicationId: string (required, immutable) │ │ └ApplicationVersion: integer (required) │ └ attributes │ ├DeploymentId: string │ └Status: string ├[~] service aws-opensearchserverless │ └ resources │ └[~] resource AWS::OpenSearchServerless::SecurityConfig │ ├ properties │ │ └[+] IamIdentityCenterOptions: IamIdentityCenterConfigOptions │ ├ attributes │ │ ├[+] IamIdentityCenterOptions.ApplicationArn: string │ │ ├[+] IamIdentityCenterOptions.ApplicationDescription: string │ │ └[+] IamIdentityCenterOptions.ApplicationName: string │ └ types │ └[+] type IamIdentityCenterConfigOptions │ ├ documentation: Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map │ │ name: IamIdentityCenterConfigOptions │ └ properties │ ├InstanceArn: string (required, immutable) │ ├ApplicationArn: string │ ├ApplicationName: string │ ├ApplicationDescription: string │ ├UserAttribute: string │ └GroupAttribute: string ├[~] service aws-quicksight │ └ resources │ ├[~] resource AWS::QuickSight::Analysis │ │ └ types │ │ ├[~] type AnalysisDefinition │ │ │ └ properties │ │ │ └[+] StaticFiles: Array<StaticFile> │ │ ├[~] type BarChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type BoxPlotVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type ComboChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type CustomContentVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type FilledMapVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type FontSize │ │ │ └ properties │ │ │ └[+] Absolute: string │ │ ├[~] type FunnelChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type GaugeChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[+] type GeospatialLayerMapConfiguration │ │ │ ├ name: GeospatialLayerMapConfiguration │ │ │ └ properties │ │ │ ├Legend: LegendOptions │ │ │ ├MapState: GeospatialMapState │ │ │ └MapStyle: GeospatialMapStyle │ │ ├[+] type GeospatialMapState │ │ │ ├ name: GeospatialMapState │ │ │ └ properties │ │ │ ├Bounds: GeospatialCoordinateBounds │ │ │ └MapNavigation: string │ │ ├[+] type GeospatialMapStyle │ │ │ ├ name: GeospatialMapStyle │ │ │ └ properties │ │ │ ├BaseMapStyle: string │ │ │ ├BaseMapVisibility: string │ │ │ └BackgroundColor: string │ │ ├[~] type GeospatialMapVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type HeatMapVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type HistogramVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[+] type ImageCustomAction │ │ │ ├ name: ImageCustomAction │ │ │ └ properties │ │ │ ├Status: string │ │ │ ├Trigger: string (required) │ │ │ ├CustomActionId: string (required) │ │ │ ├Name: string (required) │ │ │ └ActionOperations: Array<ImageCustomActionOperation> (required) │ │ ├[+] type ImageCustomActionOperation │ │ │ ├ name: ImageCustomActionOperation │ │ │ └ properties │ │ │ ├NavigationOperation: CustomActionNavigationOperation │ │ │ ├SetParametersOperation: CustomActionSetParametersOperation │ │ │ └URLOperation: CustomActionURLOperation │ │ ├[+] type ImageInteractionOptions │ │ │ └ name: ImageInteractionOptions │ │ ├[+] type ImageMenuOption │ │ │ └ name: ImageMenuOption │ │ ├[+] type ImageStaticFile │ │ │ ├ name: ImageStaticFile │ │ │ └ properties │ │ │ ├StaticFileId: string (required) │ │ │ └Source: StaticFileSource │ │ ├[~] type InsightVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type KPIVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[+] type LayerMapVisual │ │ │ ├ name: LayerMapVisual │ │ │ └ properties │ │ │ ├Subtitle: VisualSubtitleLabelOptions │ │ │ ├VisualId: string (required) │ │ │ ├DataSetIdentifier: string (required) │ │ │ ├Title: VisualTitleLabelOptions │ │ │ └VisualContentAltText: string │ │ ├[~] type LegendOptions │ │ │ └ properties │ │ │ └[+] ValueFontConfiguration: FontConfiguration │ │ ├[~] type LineChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type PieChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type PivotTableVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[+] type PluginVisual │ │ │ ├ name: PluginVisual │ │ │ └ properties │ │ │ ├Subtitle: VisualSubtitleLabelOptions │ │ │ ├PluginArn: string (required) │ │ │ ├VisualId: string (required) │ │ │ ├ChartConfiguration: PluginVisualConfiguration │ │ │ ├Title: VisualTitleLabelOptions │ │ │ └VisualContentAltText: string │ │ ├[+] type PluginVisualConfiguration │ │ │ ├ name: PluginVisualConfiguration │ │ │ └ properties │ │ │ ├SortConfiguration: PluginVisualSortConfiguration │ │ │ ├VisualOptions: PluginVisualOptions │ │ │ └FieldWells: Array<PluginVisualFieldWell> │ │ ├[+] type PluginVisualFieldWell │ │ │ ├ name: PluginVisualFieldWell │ │ │ └ properties │ │ │ ├Unaggregated: Array<UnaggregatedField> │ │ │ ├AxisName: string │ │ │ ├Measures: Array<MeasureField> │ │ │ └Dimensions: Array<DimensionField> │ │ ├[+] type PluginVisualItemsLimitConfiguration │ │ │ ├ name: PluginVisualItemsLimitConfiguration │ │ │ └ properties │ │ │ └ItemsLimit: number │ │ ├[+] type PluginVisualOptions │ │ │ ├ name: PluginVisualOptions │ │ │ └ properties │ │ │ └VisualProperties: Array<PluginVisualProperty> │ │ ├[+] type PluginVisualProperty │ │ │ ├ name: PluginVisualProperty │ │ │ └ properties │ │ │ ├Value: string │ │ │ └Name: string │ │ ├[+] type PluginVisualSortConfiguration │ │ │ ├ name: PluginVisualSortConfiguration │ │ │ └ properties │ │ │ └PluginVisualTableQuerySort: PluginVisualTableQuerySort │ │ ├[+] type PluginVisualTableQuerySort │ │ │ ├ name: PluginVisualTableQuerySort │ │ │ └ properties │ │ │ ├ItemsLimitConfiguration: PluginVisualItemsLimitConfiguration │ │ │ └RowSort: Array<FieldSortOptions> │ │ ├[~] type RadarChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type SankeyDiagramVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type ScatterPlotVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type Sheet │ │ │ └ properties │ │ │ └[+] Images: Array<SheetImage> │ │ ├[~] type SheetDefinition │ │ │ └ properties │ │ │ └[+] Images: Array<SheetImage> │ │ ├[+] type SheetImage │ │ │ ├ name: SheetImage │ │ │ └ properties │ │ │ ├Actions: Array<ImageCustomAction> │ │ │ ├SheetImageId: string (required) │ │ │ ├Tooltip: SheetImageTooltipConfiguration │ │ │ ├Scaling: SheetImageScalingConfiguration │ │ │ ├Interactions: ImageInteractionOptions │ │ │ ├Source: SheetImageSource (required) │ │ │ └ImageContentAltText: string │ │ ├[+] type SheetImageScalingConfiguration │ │ │ ├ name: SheetImageScalingConfiguration │ │ │ └ properties │ │ │ └ScalingType: string │ │ ├[+] type SheetImageSource │ │ │ ├ name: SheetImageSource │ │ │ └ properties │ │ │ └SheetImageStaticFileSource: SheetImageStaticFileSource │ │ ├[+] type SheetImageStaticFileSource │ │ │ ├ name: SheetImageStaticFileSource │ │ │ └ properties │ │ │ └StaticFileId: string (required) │ │ ├[+] type SheetImageTooltipConfiguration │ │ │ ├ name: SheetImageTooltipConfiguration │ │ │ └ properties │ │ │ ├Visibility: string │ │ │ └TooltipText: SheetImageTooltipText │ │ ├[+] type SheetImageTooltipText │ │ │ ├ name: SheetImageTooltipText │ │ │ └ properties │ │ │ └PlainText: string │ │ ├[+] type SpatialStaticFile │ │ │ ├ name: SpatialStaticFile │ │ │ └ properties │ │ │ ├StaticFileId: string (required) │ │ │ └Source: StaticFileSource │ │ ├[+] type StaticFile │ │ │ ├ name: StaticFile │ │ │ └ properties │ │ │ ├ImageStaticFile: ImageStaticFile │ │ │ └SpatialStaticFile: SpatialStaticFile │ │ ├[+] type StaticFileS3SourceOptions │ │ │ ├ name: StaticFileS3SourceOptions │ │ │ └ properties │ │ │ ├BucketName: string (required) │ │ │ ├ObjectKey: string (required) │ │ │ └Region: string (required) │ │ ├[+] type StaticFileSource │ │ │ ├ name: StaticFileSource │ │ │ └ properties │ │ │ ├UrlOptions: StaticFileUrlSourceOptions │ │ │ └S3Options: StaticFileS3SourceOptions │ │ ├[+] type StaticFileUrlSourceOptions │ │ │ ├ name: StaticFileUrlSourceOptions │ │ │ └ properties │ │ │ └Url: string (required) │ │ ├[~] type TableVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type TreeMapVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type Visual │ │ │ └ properties │ │ │ ├[+] LayerMapVisual: LayerMapVisual │ │ │ └[+] PluginVisual: PluginVisual │ │ ├[~] type WaterfallVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ └[~] type WordCloudVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] resource AWS::QuickSight::Dashboard │ │ └ types │ │ ├[~] type BarChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type BoxPlotVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type ComboChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type CustomContentVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type DashboardVersionDefinition │ │ │ └ properties │ │ │ └[+] StaticFiles: Array<StaticFile> │ │ ├[~] type FilledMapVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type FontSize │ │ │ └ properties │ │ │ └[+] Absolute: string │ │ ├[~] type FunnelChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type GaugeChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[+] type GeospatialLayerMapConfiguration │ │ │ ├ name: GeospatialLayerMapConfiguration │ │ │ └ properties │ │ │ ├Legend: LegendOptions │ │ │ ├MapState: GeospatialMapState │ │ │ └MapStyle: GeospatialMapStyle │ │ ├[+] type GeospatialMapState │ │ │ ├ name: GeospatialMapState │ │ │ └ properties │ │ │ ├Bounds: GeospatialCoordinateBounds │ │ │ └MapNavigation: string │ │ ├[+] type GeospatialMapStyle │ │ │ ├ name: GeospatialMapStyle │ │ │ └ properties │ │ │ ├BaseMapStyle: string │ │ │ ├BaseMapVisibility: string │ │ │ └BackgroundColor: string │ │ ├[~] type GeospatialMapVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type HeatMapVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type HistogramVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[+] type ImageCustomAction │ │ │ ├ name: ImageCustomAction │ │ │ └ properties │ │ │ ├Status: string │ │ │ ├Trigger: string (required) │ │ │ ├CustomActionId: string (required) │ │ │ ├Name: string (required) │ │ │ └ActionOperations: Array<ImageCustomActionOperation> (required) │ │ ├[+] type ImageCustomActionOperation │ │ │ ├ name: ImageCustomActionOperation │ │ │ └ properties │ │ │ ├NavigationOperation: CustomActionNavigationOperation │ │ │ ├SetParametersOperation: CustomActionSetParametersOperation │ │ │ └URLOperation: CustomActionURLOperation │ │ ├[+] type ImageInteractionOptions │ │ │ ├ name: ImageInteractionOptions │ │ │ └ properties │ │ │ └ImageMenuOption: ImageMenuOption │ │ ├[+] type ImageMenuOption │ │ │ ├ name: ImageMenuOption │ │ │ └ properties │ │ │ └AvailabilityStatus: string │ │ ├[+] type ImageStaticFile │ │ │ ├ name: ImageStaticFile │ │ │ └ properties │ │ │ ├StaticFileId: string (required) │ │ │ └Source: StaticFileSource │ │ ├[~] type InsightVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type KPIVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[+] type LayerMapVisual │ │ │ ├ name: LayerMapVisual │ │ │ └ properties │ │ │ ├Subtitle: VisualSubtitleLabelOptions │ │ │ ├VisualId: string (required) │ │ │ ├DataSetIdentifier: string (required) │ │ │ ├Title: VisualTitleLabelOptions │ │ │ └VisualContentAltText: string │ │ ├[~] type LegendOptions │ │ │ └ properties │ │ │ └[+] ValueFontConfiguration: FontConfiguration │ │ ├[~] type LineChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type PieChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type PivotTableVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[+] type PluginVisual │ │ │ ├ name: PluginVisual │ │ │ └ properties │ │ │ ├Subtitle: VisualSubtitleLabelOptions │ │ │ ├PluginArn: string (required) │ │ │ ├VisualId: string (required) │ │ │ ├ChartConfiguration: PluginVisualConfiguration │ │ │ ├Title: VisualTitleLabelOptions │ │ │ └VisualContentAltText: string │ │ ├[+] type PluginVisualConfiguration │ │ │ ├ name: PluginVisualConfiguration │ │ │ └ properties │ │ │ ├SortConfiguration: PluginVisualSortConfiguration │ │ │ ├VisualOptions: PluginVisualOptions │ │ │ └FieldWells: Array<PluginVisualFieldWell> │ │ ├[+] type PluginVisualFieldWell │ │ │ ├ name: PluginVisualFieldWell │ │ │ └ properties │ │ │ ├Unaggregated: Array<UnaggregatedField> │ │ │ ├AxisName: string │ │ │ ├Measures: Array<MeasureField> │ │ │ └Dimensions: Array<DimensionField> │ │ ├[+] type PluginVisualItemsLimitConfiguration │ │ │ ├ name: PluginVisualItemsLimitConfiguration │ │ │ └ properties │ │ │ └ItemsLimit: number │ │ ├[+] type PluginVisualOptions │ │ │ ├ name: PluginVisualOptions │ │ │ └ properties │ │ │ └VisualProperties: Array<PluginVisualProperty> │ │ ├[+] type PluginVisualProperty │ │ │ ├ name: PluginVisualProperty │ │ │ └ properties │ │ │ ├Value: string │ │ │ └Name: string │ │ ├[+] type PluginVisualSortConfiguration │ │ │ ├ name: PluginVisualSortConfiguration │ │ │ └ properties │ │ │ └PluginVisualTableQuerySort: PluginVisualTableQuerySort │ │ ├[+] type PluginVisualTableQuerySort │ │ │ ├ name: PluginVisualTableQuerySort │ │ │ └ properties │ │ │ ├ItemsLimitConfiguration: PluginVisualItemsLimitConfiguration │ │ │ └RowSort: Array<FieldSortOptions> │ │ ├[~] type RadarChartVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type SankeyDiagramVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type ScatterPlotVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type Sheet │ │ │ └ properties │ │ │ └[+] Images: Array<SheetImage> │ │ ├[~] type SheetDefinition │ │ │ └ properties │ │ │ └[+] Images: Array<SheetImage> │ │ ├[+] type SheetImage │ │ │ ├ name: SheetImage │ │ │ └ properties │ │ │ ├Actions: Array<ImageCustomAction> │ │ │ ├SheetImageId: string (required) │ │ │ ├Tooltip: SheetImageTooltipConfiguration │ │ │ ├Scaling: SheetImageScalingConfiguration │ │ │ ├Interactions: ImageInteractionOptions │ │ │ ├Source: SheetImageSource (required) │ │ │ └ImageContentAltText: string │ │ ├[+] type SheetImageScalingConfiguration │ │ │ ├ name: SheetImageScalingConfiguration │ │ │ └ properties │ │ │ └ScalingType: string │ │ ├[+] type SheetImageSource │ │ │ ├ name: SheetImageSource │ │ │ └ properties │ │ │ └SheetImageStaticFileSource: SheetImageStaticFileSource │ │ ├[+] type SheetImageStaticFileSource │ │ │ ├ name: SheetImageStaticFileSource │ │ │ └ properties │ │ │ └StaticFileId: string (required) │ │ ├[+] type SheetImageTooltipConfiguration │ │ │ ├ name: SheetImageTooltipConfiguration │ │ │ └ properties │ │ │ ├Visibility: string │ │ │ └TooltipText: SheetImageTooltipText │ │ ├[+] type SheetImageTooltipText │ │ │ ├ name: SheetImageTooltipText │ │ │ └ properties │ │ │ └PlainText: string │ │ ├[+] type SpatialStaticFile │ │ │ ├ name: SpatialStaticFile │ │ │ └ properties │ │ │ ├StaticFileId: string (required) │ │ │ └Source: StaticFileSource │ │ ├[+] type StaticFile │ │ │ ├ name: StaticFile │ │ │ └ properties │ │ │ ├ImageStaticFile: ImageStaticFile │ │ │ └SpatialStaticFile: SpatialStaticFile │ │ ├[+] type StaticFileS3SourceOptions │ │ │ ├ name: StaticFileS3SourceOptions │ │ │ └ properties │ │ │ ├BucketName: string (required) │ │ │ ├ObjectKey: string (required) │ │ │ └Region: string (required) │ │ ├[+] type StaticFileSource │ │ │ ├ name: StaticFileSource │ │ │ └ properties │ │ │ ├UrlOptions: StaticFileUrlSourceOptions │ │ │ └S3Options: StaticFileS3SourceOptions │ │ ├[+] type StaticFileUrlSourceOptions │ │ │ ├ name: StaticFileUrlSourceOptions │ │ │ └ properties │ │ │ └Url: string (required) │ │ ├[~] type TableVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type TreeMapVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ ├[~] type Visual │ │ │ └ properties │ │ │ ├[+] LayerMapVisual: LayerMapVisual │ │ │ └[+] PluginVisual: PluginVisual │ │ ├[~] type WaterfallVisual │ │ │ └ properties │ │ │ └[+] VisualContentAltText: string │ │ └[~] type WordCloudVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ └[~] resource AWS::QuickSight::Template │ └ types │ ├[~] type BarChartVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type BoxPlotVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type ComboChartVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type CustomContentVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type FilledMapVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type FunnelChartVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type GaugeChartVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type GeospatialMapVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type HeatMapVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type HistogramVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[+] type ImageCustomAction │ │ ├ name: ImageCustomAction │ │ └ properties │ │ ├Status: string │ │ ├Trigger: string (required) │ │ ├CustomActionId: string (required) │ │ ├Name: string (required) │ │ └ActionOperations: Array<ImageCustomActionOperation> (required) │ ├[+] type ImageCustomActionOperation │ │ ├ name: ImageCustomActionOperation │ │ └ properties │ │ ├NavigationOperation: CustomActionNavigationOperation │ │ ├SetParametersOperation: CustomActionSetParametersOperation │ │ └URLOperation: CustomActionURLOperation │ ├[+] type ImageInteractionOptions │ │ └ name: ImageInteractionOptions │ ├[+] type ImageMenuOption │ │ └ name: ImageMenuOption │ ├[~] type InsightVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type KPIVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type LegendOptions │ │ └ properties │ │ └[+] ValueFontConfiguration: FontConfiguration │ ├[~] type LineChartVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type PieChartVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type PivotTableVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[+] type PluginVisual │ │ ├ name: PluginVisual │ │ └ properties │ │ ├Subtitle: VisualSubtitleLabelOptions │ │ ├PluginArn: string (required) │ │ ├VisualId: string (required) │ │ ├ChartConfiguration: PluginVisualConfiguration │ │ ├Title: VisualTitleLabelOptions │ │ └VisualContentAltText: string │ ├[+] type PluginVisualConfiguration │ │ ├ name: PluginVisualConfiguration │ │ └ properties │ │ ├SortConfiguration: PluginVisualSortConfiguration │ │ ├VisualOptions: PluginVisualOptions │ │ └FieldWells: Array<PluginVisualFieldWell> │ ├[+] type PluginVisualFieldWell │ │ ├ name: PluginVisualFieldWell │ │ └ properties │ │ ├Unaggregated: Array<UnaggregatedField> │ │ ├AxisName: string │ │ ├Measures: Array<MeasureField> │ │ └Dimensions: Array<DimensionField> │ ├[+] type PluginVisualItemsLimitConfiguration │ │ ├ name: PluginVisualItemsLimitConfiguration │ │ └ properties │ │ └ItemsLimit: number │ ├[+] type PluginVisualOptions │ │ ├ name: PluginVisualOptions │ │ └ properties │ │ └VisualProperties: Array<PluginVisualProperty> │ ├[+] type PluginVisualProperty │ │ ├ name: PluginVisualProperty │ │ └ properties │ │ ├Value: string │ │ └Name: string │ ├[+] type PluginVisualSortConfiguration │ │ ├ name: PluginVisualSortConfiguration │ │ └ properties │ │ └PluginVisualTableQuerySort: PluginVisualTableQuerySort │ ├[+] type PluginVisualTableQuerySort │ │ ├ name: PluginVisualTableQuerySort │ │ └ properties │ │ ├ItemsLimitConfiguration: PluginVisualItemsLimitConfiguration │ │ └RowSort: Array<FieldSortOptions> │ ├[~] type RadarChartVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type SankeyDiagramVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type ScatterPlotVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type Sheet │ │ └ properties │ │ └[+] Images: Array<SheetImage> │ ├[~] type SheetDefinition │ │ └ properties │ │ └[+] Images: Array<SheetImage> │ ├[+] type SheetImage │ │ ├ name: SheetImage │ │ └ properties │ │ ├Actions: Array<ImageCustomAction> │ │ ├SheetImageId: string (required) │ │ ├Tooltip: SheetImageTooltipConfiguration │ │ ├Scaling: SheetImageScalingConfiguration │ │ ├Interactions: ImageInteractionOptions │ │ ├Source: SheetImageSource (required) │ │ └ImageContentAltText: string │ ├[+] type SheetImageScalingConfiguration │ │ ├ name: SheetImageScalingConfiguration │ │ └ properties │ │ └ScalingType: string │ ├[+] type SheetImageSource │ │ ├ name: SheetImageSource │ │ └ properties │ │ └SheetImageStaticFileSource: SheetImageStaticFileSource │ ├[+] type SheetImageStaticFileSource │ │ ├ name: SheetImageStaticFileSource │ │ └ properties │ │ └StaticFileId: string (required) │ ├[+] type SheetImageTooltipConfiguration │ │ ├ name: SheetImageTooltipConfiguration │ │ └ properties │ │ ├Visibility: string │ │ └TooltipText: SheetImageTooltipText │ ├[+] type SheetImageTooltipText │ │ ├ name: SheetImageTooltipText │ │ └ properties │ │ └PlainText: string │ ├[~] type TableVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type TreeMapVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ ├[~] type Visual │ │ └ properties │ │ └[+] PluginVisual: PluginVisual │ ├[~] type WaterfallVisual │ │ └ properties │ │ └[+] VisualContentAltText: string │ └[~] type WordCloudVisual │ └ properties │ └[+] VisualContentAltText: string ├[~] service aws-resourcegroups │ └ resources │ └[+] resource AWS::ResourceGroups::TagSyncTask │ ├ name: TagSyncTask │ │ cloudFormationType: AWS::ResourceGroups::TagSyncTask │ │ documentation: Schema for ResourceGroups::TagSyncTask │ ├ properties │ │ ├Group: string (required, immutable) │ │ ├TagKey: string (required, immutable) │ │ ├TagValue: string (required, immutable) │ │ └RoleArn: string (required, immutable) │ └ attributes │ ├TaskArn: string │ ├Status: string │ ├GroupName: string │ └GroupArn: string ├[~] service aws-s3express │ └ resources │ └[~] resource AWS::S3Express::DirectoryBucket │ ├ properties │ │ └[+] LifecycleConfiguration: LifecycleConfiguration │ └ types │ ├[+] type AbortIncompleteMultipartUpload │ │ ├ documentation: Specifies the days since the initiation of an incomplete multipart upload that Amazon S3 will wait before permanently removing all parts of the upload. For more information, see [Aborting Incomplete Multipart Uploads Using a Bucket Lifecycle Configuration](https://docs.aws.amazon.com/AmazonS3/latest/dev/mpuoverview.html#mpu-abort-incomplete-mpu-lifecycle-config) in the *Amazon S3 User Guide* . │ │ │ name: AbortIncompleteMultipartUpload │ │ └ properties │ │ └DaysAfterInitiation: integer (required) │ ├[+] type LifecycleConfiguration │ │ ├ documentation: Container for lifecycle rules. You can add as many as 1000 rules. │ │ │ For more information see, [Managing your storage lifecycle](https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lifecycle-mgmt.html) in the *Amazon S3 User Guide* . │ │ │ name: LifecycleConfiguration │ │ └ properties │ │ └Rules: Array<Rule> (required) │ └[+] type Rule │ ├ documentation: Specifies lifecycle rules for an Amazon S3 bucket. For more information, see [Put Bucket Lifecycle Configuration](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTlifecycle.html) in the *Amazon S3 API Reference* . For examples, see [Put Bucket Lifecycle Configuration Examples](https://docs.aws.amazon.com//AmazonS3/latest/API/API_PutBucketLifecycleConfiguration.html#API_PutBucketLifecycleConfiguration_Examples) . │ │ name: Rule │ └ properties │ ├AbortIncompleteMultipartUpload: AbortIncompleteMultipartUpload │ ├ExpirationInDays: integer │ ├Id: string │ ├Prefix: string │ ├Status: string (required) │ ├ObjectSizeGreaterThan: string │ └ObjectSizeLessThan: string ├[~] service aws-sagemaker │ └ resources │ └[~] resource AWS::SageMaker::InferenceComponent │ ├ properties │ │ ├ RuntimeConfig: - InferenceComponentRuntimeConfig (required) │ │ │ + InferenceComponentRuntimeConfig │ │ └ VariantName: - string (required) │ │ + string │ └ types │ └[~] type InferenceComponentSpecification │ └ properties │ ├[+] BaseInferenceComponentName: string │ └ ComputeResourceRequirements: - InferenceComponentComputeResourceRequirements (required) │ + InferenceComponentComputeResourceRequirements ├[~] service aws-wisdom │ └ resources │ ├[~] resource AWS::Wisdom::KnowledgeBase │ │ ├ - tagInformation: undefined │ │ │ + tagInformation: {"tagPropertyName":"Tags","variant":"standard"} │ │ ├ properties │ │ │ └[+] VectorIngestionConfiguration: VectorIngestionConfiguration │ │ └ types │ │ ├[+] type BedrockFoundationModelConfiguration │ │ │ ├ name: BedrockFoundationModelConfiguration │ │ │ └ properties │ │ │ ├ModelArn: string (required) │ │ │ └ParsingPrompt: ParsingPrompt │ │ ├[+] type ChunkingConfiguration │ │ │ ├ name: ChunkingConfiguration │ │ │ └ properties │ │ │ ├ChunkingStrategy: string (required) │ │ │ ├FixedSizeChunkingConfiguration: FixedSizeChunkingConfiguration │ │ │ ├HierarchicalChunkingConfiguration: HierarchicalChunkingConfiguration │ │ │ └SemanticChunkingConfiguration: SemanticChunkingConfiguration │ │ ├[+] type CrawlerLimits │ │ │ ├ name: CrawlerLimits │ │ │ └ properties │ │ │ └RateLimit: number │ │ ├[+] type FixedSizeChunkingConfiguration │ │ │ ├ name: FixedSizeChunkingConfiguration │ │ │ └ properties │ │ │ ├MaxTokens: number (required) │ │ │ └OverlapPercentage: number (required) │ │ ├[+] type HierarchicalChunkingConfiguration │ │ │ ├ name: HierarchicalChunkingConfiguration │ │ │ └ properties │ │ │ ├LevelConfigurations: Array<HierarchicalChunkingLevelConfiguration> (required) │ │ │ └OverlapTokens: number (required) │ │ ├[+] type HierarchicalChunkingLevelConfiguration │ │ │ ├ name: HierarchicalChunkingLevelConfiguration │ │ │ └ properties │ │ │ └MaxTokens: number (required) │ │ ├[+] type ManagedSourceConfiguration │ │ │ ├ name: ManagedSourceConfiguration │ │ │ └ properties │ │ │ └WebCrawlerConfiguration: WebCrawlerConfiguration (required) │ │ ├[+] type ParsingConfiguration │ │ │ ├ name: ParsingConfiguration │ │ │ └ properties │ │ │ ├ParsingStrategy: string (required) │ │ │ └BedrockFoundationModelConfiguration: BedrockFoundationModelConfiguration │ │ ├[+] type ParsingPrompt │ │ │ ├ name: ParsingPrompt │ │ │ └ properties │ │ │ └ParsingPromptText: string (required) │ │ ├[+] type SeedUrl │ │ │ ├ name: SeedUrl │ │ │ └ properties │ │ │ └Url: string │ │ ├[+] type SemanticChunkingConfiguration │ │ │ ├ name: SemanticChunkingConfiguration │ │ │ └ properties │ │ │ ├MaxTokens: number (required) │ │ │ ├BufferSize: number (required) │ │ │ └BreakpointPercentileThreshold: number (required) │ │ ├[~] type SourceConfiguration │ │ │ └ properties │ │ │ ├ AppIntegrations: - AppIntegrationsConfiguration (required, immutable) │ │ │ │ + AppIntegrationsConfiguration (immutable) │ │ │ └[+] ManagedSourceConfiguration: ManagedSourceConfiguration │ │ ├[+] type UrlConfiguration │ │ │ ├ name: UrlConfiguration │ │ │ └ properties │ │ │ └SeedUrls: Array<SeedUrl> │ │ ├[+] type VectorIngestionConfiguration │ │ │ ├ name: VectorIngestionConfiguration │ │ │ └ properties │ │ │ ├ChunkingConfiguration: ChunkingConfiguration │ │ │ └ParsingConfiguration: ParsingConfiguration │ │ └[+] type WebCrawlerConfiguration │ │ ├ name: WebCrawlerConfiguration │ │ └ properties │ │ ├UrlConfiguration: UrlConfiguration (required) │ │ ├CrawlerLimits: CrawlerLimits │ │ ├InclusionFilters: Array<string> │ │ ├ExclusionFilters: Array<string> │ │ └Scope: string │ ├[+] resource AWS::Wisdom::MessageTemplate │ │ ├ name: MessageTemplate │ │ │ cloudFormationType: AWS::Wisdom::MessageTemplate │ │ │ documentation: Definition of AWS::Wisdom::MessageTemplate Resource Type │ │ │ tagInformation: {"tagPropertyName":"Tags","variant":"standard"} │ │ ├ properties │ │ │ ├KnowledgeBaseArn: string (required, immutable) │ │ │ ├Name: string (required) │ │ │ ├ChannelSubtype: string (required, immutable) │ │ │ ├Content: Content (required) │ │ │ ├Description: string │ │ │ ├Language: string │ │ │ ├GroupingConfiguration: GroupingConfiguration │ │ │ ├DefaultAttributes: MessageTemplateAttributes │ │ │ └Tags: Array<tag> │ │ ├ attributes │ │ │ ├MessageTemplateId: string │ │ │ ├MessageTemplateArn: string │ │ │ └MessageTemplateContentSha256: string │ │ └ types │ │ ├type Content │ │ │├ documentation: The content of the message template. │ │ ││ name: Content │ │ │└ properties │ │ │ ├EmailMessageTemplateContent: EmailMessageTemplateContent │ │ │ └SmsMessageTemplateContent: SmsMessageTemplateContent │ │ ├type EmailMessageTemplateContent │ │ │├ documentation: The content of message template that applies to email channel subtype. │ │ ││ name: EmailMessageTemplateContent │ │ │└ properties │ │ │ ├Subject: string (required) │ │ │ ├Body: EmailMessageTemplateContentBody (required) │ │ │ └Headers: Array<EmailMessageTemplateHeader> (required) │ │ ├type EmailMessageTemplateContentBody │ │ │├ documentation: The body to use in email messages. │ │ ││ name: EmailMessageTemplateContentBody │ │ │└ properties │ │ │ ├PlainText: MessageTemplateBodyContentProvider │ │ │ └Html: MessageTemplateBodyContentProvider │ │ ├type MessageTemplateBodyContentProvider │ │ │├ documentation: The container of message template body. │ │ ││ name: MessageTemplateBodyContentProvider │ │ │└ properties │ │ │ └Content: string │ │ ├type EmailMessageTemplateHeader │ │ │├ documentation: The email header to include in email messages. │ │ ││ name: EmailMessageTemplateHeader │ │ │└ properties │ │ │ ├Name: string │ │ │ └Value: string │ │ ├type SmsMessageTemplateContent │ │ │├ documentation: The content of message template that applies to SMS channel subtype. │ │ ││ name: SmsMessageTemplateContent │ │ │└ properties │ │ │ └Body: SmsMessageTemplateContentBody (required) │ │ ├type SmsMessageTemplateContentBody │ │ │├ documentation: The body to use in SMS messages. │ │ ││ name: SmsMessageTemplateContentBody │ │ │└ properties │ │ │ └PlainText: MessageTemplateBodyContentProvider │ │ ├type GroupingConfiguration │ │ │├ documentation: The configuration information of the user groups that the message template is accessible to. │ │ ││ name: GroupingConfiguration │ │ │└ properties │ │ │ ├Criteria: string (required) │ │ │ └Values: Array<string> (required) │ │ ├type MessageTemplateAttributes │ │ │├ documentation: An object that specifies the default values to use for variables in the message template. This object contains different categories of key-value pairs. Each key defines a variable or placeholder in the message template. The corresponding value defines the default value for that variable. │ │ ││ name: MessageTemplateAttributes │ │ │└ properties │ │ │ ├SystemAttributes: SystemAttributes │ │ │ ├AgentAttributes: AgentAttributes │ │ │ ├CustomerProfileAttributes: CustomerProfileAttributes │ │ │ └CustomAttributes: Map<string, string> │ │ ├type SystemAttributes │ │ │├ documentation: The system attributes that are used with the message template. │ │ ││ name: SystemAttributes │ │ │└ properties │ │ │ ├Name: string │ │ │ ├CustomerEndpoint: SystemEndpointAttributes │ │ │ └SystemEndpoint: SystemEndpointAttributes │ │ ├type SystemEndpointAttributes │ │ │├ documentation: The system endpoint attributes that are used with the message template. │ │ ││ name: SystemEndpointAttributes │ │ │└ properties │ │ │ └Address: string │ │ ├type AgentAttributes │ │ │├ documentation: The agent attributes that are used with the message template. │ │ ││ name: AgentAttributes │ │ │└ properties │ │ │ ├FirstName: string │ │ │ └LastName: string │ │ └type CustomerProfileAttributes │ │ ├ documentation: The customer profile attributes that are used with the message template. │ │ │ name: CustomerProfileAttributes │ │ └ properties │ │ ├ProfileId: string │ │ ├ProfileARN: string │ │ ├FirstName: string │ │ ├MiddleName: string │ │ ├LastName: string │ │ ├AccountNumber: string │ │ ├EmailAddress: string │ │ ├PhoneNumber: string │ │ ├AdditionalInformation: string │ │ ├PartyType: string │ │ ├BusinessName: string │ │ ├BirthDate: string │ │ ├Gender: string │ │ ├MobilePhoneNumber: string │ │ ├HomePhoneNumber: string │ │ ├BusinessPhoneNumber: string │ │ ├BusinessEmailAddress: string │ │ ├Address1: string │ │ ├Address2: string │ │ ├Address3: string │ │ ├Address4: string │ │ ├City: string │ │ ├County: string │ │ ├Country: string │ │ ├PostalCode: string │ │ ├Province: string │ │ ├State: string │ │ ├ShippingAddress1: string │ │ ├ShippingAddress2: string │ │ ├ShippingAddress3: string │ │ ├ShippingAddress4: string │ │ ├ShippingCity: string │ │ ├ShippingCounty: string │ │ ├ShippingCountry: string │ │ ├ShippingPostalCode: string │ │ ├ShippingProvince: string │ │ ├ShippingState: string │ │ ├MailingAddress1: string │ │ ├MailingAddress2: string │ │ ├MailingAddress3: string │ │ ├MailingAddress4: string │ │ ├MailingCity: string │ │ ├MailingCounty: string │ │ ├MailingCountry: string │ │ ├MailingPostalCode: string │ │ ├MailingProvince: string │ │ ├MailingState: string │ │ ├BillingAddress1: string │ │ ├BillingAddress2: string │ │ ├BillingAddress3: string │ │ ├BillingAddress4: string │ │ ├BillingCity: string │ │ ├BillingCounty: string │ │ ├BillingCountry: string │ │ ├BillingPostalCode: string │ │ ├BillingProvince: string │ │ ├BillingState: string │ │ └Custom: Map<string, string> │ └[+] resource AWS::Wisdom::MessageTemplateVersion │ ├ name: MessageTemplateVersion │ │ cloudFormationType: AWS::Wisdom::MessageTemplateVersion │ │ documentation: A version for the specified customer-managed message template within the specified knowledge base. │ ├ properties │ │ ├MessageTemplateArn: string (required, immutable) │ │ └MessageTemplateContentSha256: string │ └ attributes │ ├MessageTemplateVersionNumber: number │ └MessageTemplateVersionArn: string └[~] service aws-workspacesweb └ resources ├[+] resource AWS::WorkSpacesWeb::DataProtectionSettings │ ├ name: DataProtectionSettings │ │ cloudFormationType: AWS::WorkSpacesWeb::DataProtectionSettings │ │ documentation: Definition of AWS::WorkSpacesWeb::DataProtectionSettings Resource Type │ │ tagInformation: {"tagPropertyName":"Tags","variant":"standard"} │ ├ properties │ │ ├AdditionalEncryptionContext: Map<string, string> (immutable) │ │ ├CustomerManagedKey: string (immutable) │ │ ├Description: string │ │ ├DisplayName: string │ │ ├InlineRedactionConfiguration: InlineR…
1 parent d95db49 commit 9e6bb24

File tree

5 files changed

+46
-14
lines changed

5 files changed

+46
-14
lines changed

packages/@aws-cdk/cloudformation-diff/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
},
2424
"license": "Apache-2.0",
2525
"dependencies": {
26-
"@aws-cdk/aws-service-spec": "^0.1.35",
27-
"@aws-cdk/service-spec-types": "^0.0.102",
26+
"@aws-cdk/aws-service-spec": "^0.1.36",
27+
"@aws-cdk/service-spec-types": "^0.0.103",
2828
"chalk": "^4",
2929
"diff": "^5.2.0",
3030
"fast-deep-equal": "^3.1.3",

packages/@aws-cdk/integ-runner/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"@aws-cdk/cloud-assembly-schema": "^38.0.0",
7575
"@aws-cdk/cloudformation-diff": "0.0.0",
7676
"@aws-cdk/cx-api": "0.0.0",
77-
"@aws-cdk/aws-service-spec": "^0.1.35",
77+
"@aws-cdk/aws-service-spec": "^0.1.36",
7878
"cdk-assets": "3.0.0-rc.32",
7979
"@aws-cdk/cdk-cli-wrapper": "0.0.0",
8080
"aws-cdk": "0.0.0",

packages/aws-cdk-lib/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
"mime-types": "^2.1.35"
137137
},
138138
"devDependencies": {
139-
"@aws-cdk/aws-service-spec": "^0.1.35",
139+
"@aws-cdk/aws-service-spec": "^0.1.36",
140140
"@aws-cdk/cdk-build-tools": "0.0.0",
141141
"@aws-cdk/custom-resource-handlers": "0.0.0",
142142
"@aws-cdk/pkglint": "0.0.0",

tools/@aws-cdk/spec2cdk/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
},
3333
"license": "Apache-2.0",
3434
"dependencies": {
35-
"@aws-cdk/aws-service-spec": "^0.1.35",
35+
"@aws-cdk/aws-service-spec": "^0.1.36",
3636
"@aws-cdk/service-spec-importers": "^0.0.57",
37-
"@aws-cdk/service-spec-types": "^0.0.102",
37+
"@aws-cdk/service-spec-types": "^0.0.103",
3838
"@cdklabs/tskb": "^0.0.3",
3939
"@cdklabs/typewriter": "^0.0.3",
4040
"camelcase": "^6",

yarn.lock

+40-8
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@
6363
resolved "https://registry.npmjs.org/@aws-cdk/asset-node-proxy-agent-v6/-/asset-node-proxy-agent-v6-2.1.0.tgz#6d3c7860354d4856a7e75375f2f0ecab313b4989"
6464
integrity sha512-7bY3J8GCVxLupn/kNmpPc5VJz8grx+4RKfnnJiO1LG+uxkZfANZG3RMHhE+qQxxwkyQ9/MfPtTpf748UhR425A==
6565

66-
"@aws-cdk/aws-service-spec@^0.1.35":
67-
version "0.1.35"
68-
resolved "https://registry.npmjs.org/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.35.tgz#2358c86d446a84fc31104510b4bf060aa8854866"
69-
integrity sha512-1LcfP/mQZflEgup6VOq1qBw56GLoju8EcgGR+K5CDwsHHPybPvBxlwZUU+Ny8A7gFWi9pvm8Jdd79lz9ihmNPw==
66+
"@aws-cdk/aws-service-spec@^0.1.36":
67+
version "0.1.36"
68+
resolved "https://registry.npmjs.org/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.36.tgz#a64c518bd246c7d7ab1fdda12da6e1bbb0a34822"
69+
integrity sha512-Pgs70xwtV4tUdDpslutB3+JqBp1+Q9WLd3kVkgTyUiGJU7Db6wQ9oLHNKRF41mtO31VYo+oyVmH8eomFfqvXew==
7070
dependencies:
71-
"@aws-cdk/service-spec-types" "^0.0.102"
71+
"@aws-cdk/service-spec-types" "^0.0.103"
7272
"@cdklabs/tskb" "^0.0.3"
7373

7474
"@aws-cdk/cloud-assembly-schema@^38.0.0", "@aws-cdk/cloud-assembly-schema@^38.0.1":
@@ -129,6 +129,13 @@
129129
dependencies:
130130
"@cdklabs/tskb" "^0.0.3"
131131

132+
"@aws-cdk/service-spec-types@^0.0.103":
133+
version "0.0.103"
134+
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.103.tgz#0519026090f40fb1937f84683800594662ab9f41"
135+
integrity sha512-gt2mx0GpwmY0jQxDtxREskqHGtAvUwRU5YtTA65cdGwkjh/TXlw7nUXnHgG+JRQFrfvCIgqL1D+SB18UAo2zvA==
136+
dependencies:
137+
"@cdklabs/tskb" "^0.0.3"
138+
132139
"@aws-crypto/[email protected]":
133140
version "5.2.0"
134141
resolved "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-5.2.0.tgz#cfcc22570949c98c6689cfcbd2d693d36cdae2e1"
@@ -17714,7 +17721,16 @@ string-length@^4.0.1:
1771417721
char-regex "^1.0.2"
1771517722
strip-ansi "^6.0.0"
1771617723

17717-
"string-width-cjs@npm:string-width@^4.2.0", string-width@*, string-width@^1.0.1, "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3, string-width@^5.0.1, string-width@^5.1.2:
17724+
"string-width-cjs@npm:string-width@^4.2.0":
17725+
version "4.2.3"
17726+
resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
17727+
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
17728+
dependencies:
17729+
emoji-regex "^8.0.0"
17730+
is-fullwidth-code-point "^3.0.0"
17731+
strip-ansi "^6.0.1"
17732+
17733+
string-width@*, string-width@^1.0.1, "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3, string-width@^5.0.1, string-width@^5.1.2:
1771817734
version "4.2.3"
1771917735
resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
1772017736
integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -17779,7 +17795,7 @@ stringify-package@^1.0.1:
1777917795
resolved "https://registry.npmjs.org/stringify-package/-/stringify-package-1.0.1.tgz#e5aa3643e7f74d0f28628b72f3dad5cecfc3ba85"
1778017796
integrity sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg==
1778117797

17782-
"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1:
17798+
"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
1778317799
version "6.0.1"
1778417800
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
1778517801
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -17793,6 +17809,13 @@ strip-ansi@^3.0.1:
1779317809
dependencies:
1779417810
ansi-regex "^2.0.0"
1779517811

17812+
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
17813+
version "6.0.1"
17814+
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
17815+
integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
17816+
dependencies:
17817+
ansi-regex "^5.0.1"
17818+
1779617819
strip-ansi@^7.0.1, strip-ansi@^7.1.0:
1779717820
version "7.1.0"
1779817821
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
@@ -18814,7 +18837,7 @@ workerpool@^6.5.1:
1881418837
resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz#060f73b39d0caf97c6db64da004cd01b4c099544"
1881518838
integrity sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==
1881618839

18817-
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
18840+
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
1881818841
version "7.0.0"
1881918842
resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
1882018843
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -18832,6 +18855,15 @@ wrap-ansi@^6.0.1, wrap-ansi@^6.2.0:
1883218855
string-width "^4.1.0"
1883318856
strip-ansi "^6.0.0"
1883418857

18858+
wrap-ansi@^7.0.0:
18859+
version "7.0.0"
18860+
resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
18861+
integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
18862+
dependencies:
18863+
ansi-styles "^4.0.0"
18864+
string-width "^4.1.0"
18865+
strip-ansi "^6.0.0"
18866+
1883518867
wrap-ansi@^8.1.0:
1883618868
version "8.1.0"
1883718869
resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"

0 commit comments

Comments
 (0)