From fbcf9484909d5a2b40f2212bfa80db3f0333e185 Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Wed, 28 Aug 2024 14:14:51 -0500 Subject: [PATCH 1/9] make import examples file json --- .../provider/generators/schema/imports.tmpl | 20 +- internal/provider/generators/schema/main.go | 2 +- internal/provider/import_examples.go | 1016 ---- internal/provider/import_examples.json | 5052 +++++++++++++++++ internal/provider/schemas.go | 2 +- 5 files changed, 5064 insertions(+), 1028 deletions(-) delete mode 100644 internal/provider/import_examples.go create mode 100644 internal/provider/import_examples.json diff --git a/internal/provider/generators/schema/imports.tmpl b/internal/provider/generators/schema/imports.tmpl index 24dc12ba8..373d39ac3 100644 --- a/internal/provider/generators/schema/imports.tmpl +++ b/internal/provider/generators/schema/imports.tmpl @@ -1,10 +1,10 @@ -// Copyright (c) HashiCorp, Inc. -// SPDX-License-Identifier: MPL-2.0 - -// Code generated by generators/schema/main.go; DO NOT EDIT. - -{{- range .Resources }} -//go:generate go run generators/import-examples/main.go -resource {{ .ResourceName }} -identifier {{ .Identifier }} -- ../../examples/resources/{{ .ResourceName }}/import.sh -{{- end }} - -package {{ .PackageName }} +[ +{{- range $i, $e := .Resources }} + {{- if $i}},{{- end}} + { + "resource": "{{ $e.ResourceName }}", + "identifier": "{{ $e.Identifier }}", + "path": "../../examples/resources/{{ $e.ResourceName }}/import.sh" + } +{{- end}} +] diff --git a/internal/provider/generators/schema/main.go b/internal/provider/generators/schema/main.go index cc46e52cf..2b5844eea 100644 --- a/internal/provider/generators/schema/main.go +++ b/internal/provider/generators/schema/main.go @@ -538,7 +538,7 @@ func (g *Generator) GenerateResourceImportExamples(packageName, filename string, importsTemplateData.Resources = append(importsTemplateData.Resources, r) } - i := g.NewGoFileDestination(filename) + i := g.NewUnformattedFileDestination(filename) if err := i.CreateDirectories(); err != nil { return err diff --git a/internal/provider/import_examples.go b/internal/provider/import_examples.go deleted file mode 100644 index bb207cd27..000000000 --- a/internal/provider/import_examples.go +++ /dev/null @@ -1,1016 +0,0 @@ -// Copyright (c) HashiCorp, Inc. -// SPDX-License-Identifier: MPL-2.0 - -// Code generated by generators/schema/main.go; DO NOT EDIT. -//go:generate go run generators/import-examples/main.go -resource awscc_acmpca_certificate -identifier Arn,CertificateAuthorityArn -- ../../examples/resources/awscc_acmpca_certificate/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_acmpca_certificate_authority -identifier Arn -- ../../examples/resources/awscc_acmpca_certificate_authority/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_acmpca_certificate_authority_activation -identifier CertificateAuthorityArn -- ../../examples/resources/awscc_acmpca_certificate_authority_activation/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_acmpca_permission -identifier CertificateAuthorityArn,Principal -- ../../examples/resources/awscc_acmpca_permission/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_aps_rule_groups_namespace -identifier Arn -- ../../examples/resources/awscc_aps_rule_groups_namespace/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_aps_scraper -identifier Arn -- ../../examples/resources/awscc_aps_scraper/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_aps_workspace -identifier Arn -- ../../examples/resources/awscc_aps_workspace/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_arczonalshift_autoshift_observer_notification_status -identifier AccountId,Region -- ../../examples/resources/awscc_arczonalshift_autoshift_observer_notification_status/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_arczonalshift_zonal_autoshift_configuration -identifier ResourceIdentifier -- ../../examples/resources/awscc_arczonalshift_zonal_autoshift_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_accessanalyzer_analyzer -identifier Arn -- ../../examples/resources/awscc_accessanalyzer_analyzer/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_amplify_app -identifier Arn -- ../../examples/resources/awscc_amplify_app/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_amplify_branch -identifier Arn -- ../../examples/resources/awscc_amplify_branch/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_amplify_domain -identifier Arn -- ../../examples/resources/awscc_amplify_domain/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_account -identifier Id -- ../../examples/resources/awscc_apigateway_account/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_api_key -identifier APIKeyId -- ../../examples/resources/awscc_apigateway_api_key/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_authorizer -identifier RestApiId,AuthorizerId -- ../../examples/resources/awscc_apigateway_authorizer/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_base_path_mapping -identifier DomainName,BasePath -- ../../examples/resources/awscc_apigateway_base_path_mapping/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_client_certificate -identifier ClientCertificateId -- ../../examples/resources/awscc_apigateway_client_certificate/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_deployment -identifier DeploymentId,RestApiId -- ../../examples/resources/awscc_apigateway_deployment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_documentation_part -identifier DocumentationPartId,RestApiId -- ../../examples/resources/awscc_apigateway_documentation_part/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_documentation_version -identifier DocumentationVersion,RestApiId -- ../../examples/resources/awscc_apigateway_documentation_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_domain_name -identifier DomainName -- ../../examples/resources/awscc_apigateway_domain_name/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_gateway_response -identifier Id -- ../../examples/resources/awscc_apigateway_gateway_response/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_method -identifier RestApiId,ResourceId,HttpMethod -- ../../examples/resources/awscc_apigateway_method/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_model -identifier RestApiId,Name -- ../../examples/resources/awscc_apigateway_model/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_request_validator -identifier RestApiId,RequestValidatorId -- ../../examples/resources/awscc_apigateway_request_validator/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_resource -identifier RestApiId,ResourceId -- ../../examples/resources/awscc_apigateway_resource/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_rest_api -identifier RestApiId -- ../../examples/resources/awscc_apigateway_rest_api/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_stage -identifier RestApiId,StageName -- ../../examples/resources/awscc_apigateway_stage/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_usage_plan -identifier Id -- ../../examples/resources/awscc_apigateway_usage_plan/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_usage_plan_key -identifier Id -- ../../examples/resources/awscc_apigateway_usage_plan_key/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigateway_vpc_link -identifier VpcLinkId -- ../../examples/resources/awscc_apigateway_vpc_link/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigatewayv2_api -identifier ApiId -- ../../examples/resources/awscc_apigatewayv2_api/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigatewayv2_api_mapping -identifier ApiMappingId,DomainName -- ../../examples/resources/awscc_apigatewayv2_api_mapping/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigatewayv2_authorizer -identifier AuthorizerId,ApiId -- ../../examples/resources/awscc_apigatewayv2_authorizer/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigatewayv2_deployment -identifier ApiId,DeploymentId -- ../../examples/resources/awscc_apigatewayv2_deployment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigatewayv2_domain_name -identifier DomainName -- ../../examples/resources/awscc_apigatewayv2_domain_name/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigatewayv2_integration_response -identifier ApiId,IntegrationId,IntegrationResponseId -- ../../examples/resources/awscc_apigatewayv2_integration_response/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigatewayv2_model -identifier ApiId,ModelId -- ../../examples/resources/awscc_apigatewayv2_model/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigatewayv2_route -identifier ApiId,RouteId -- ../../examples/resources/awscc_apigatewayv2_route/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigatewayv2_route_response -identifier ApiId,RouteId,RouteResponseId -- ../../examples/resources/awscc_apigatewayv2_route_response/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apigatewayv2_vpc_link -identifier VpcLinkId -- ../../examples/resources/awscc_apigatewayv2_vpc_link/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appconfig_application -identifier ApplicationId -- ../../examples/resources/awscc_appconfig_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appconfig_configuration_profile -identifier ApplicationId,ConfigurationProfileId -- ../../examples/resources/awscc_appconfig_configuration_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appconfig_environment -identifier ApplicationId,EnvironmentId -- ../../examples/resources/awscc_appconfig_environment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appconfig_extension_association -identifier Id -- ../../examples/resources/awscc_appconfig_extension_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appconfig_hosted_configuration_version -identifier ApplicationId,ConfigurationProfileId,VersionNumber -- ../../examples/resources/awscc_appconfig_hosted_configuration_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appflow_connector -identifier ConnectorLabel -- ../../examples/resources/awscc_appflow_connector/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appflow_connector_profile -identifier ConnectorProfileName -- ../../examples/resources/awscc_appflow_connector_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appflow_flow -identifier FlowName -- ../../examples/resources/awscc_appflow_flow/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appintegrations_application -identifier ApplicationArn -- ../../examples/resources/awscc_appintegrations_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appintegrations_event_integration -identifier Name -- ../../examples/resources/awscc_appintegrations_event_integration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apprunner_auto_scaling_configuration -identifier AutoScalingConfigurationArn -- ../../examples/resources/awscc_apprunner_auto_scaling_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apprunner_observability_configuration -identifier ObservabilityConfigurationArn -- ../../examples/resources/awscc_apprunner_observability_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apprunner_service -identifier ServiceArn -- ../../examples/resources/awscc_apprunner_service/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apprunner_vpc_connector -identifier VpcConnectorArn -- ../../examples/resources/awscc_apprunner_vpc_connector/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apprunner_vpc_ingress_connection -identifier VpcIngressConnectionArn -- ../../examples/resources/awscc_apprunner_vpc_ingress_connection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appstream_app_block -identifier Arn -- ../../examples/resources/awscc_appstream_app_block/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appstream_app_block_builder -identifier Name -- ../../examples/resources/awscc_appstream_app_block_builder/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appstream_application -identifier Arn -- ../../examples/resources/awscc_appstream_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appstream_application_entitlement_association -identifier StackName,EntitlementName,ApplicationIdentifier -- ../../examples/resources/awscc_appstream_application_entitlement_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appstream_application_fleet_association -identifier FleetName,ApplicationArn -- ../../examples/resources/awscc_appstream_application_fleet_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appstream_directory_config -identifier DirectoryName -- ../../examples/resources/awscc_appstream_directory_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appstream_entitlement -identifier StackName,Name -- ../../examples/resources/awscc_appstream_entitlement/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appstream_image_builder -identifier Name -- ../../examples/resources/awscc_appstream_image_builder/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appsync_domain_name -identifier DomainName -- ../../examples/resources/awscc_appsync_domain_name/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appsync_domain_name_api_association -identifier ApiAssociationIdentifier -- ../../examples/resources/awscc_appsync_domain_name_api_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appsync_function_configuration -identifier FunctionArn -- ../../examples/resources/awscc_appsync_function_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appsync_resolver -identifier ResolverArn -- ../../examples/resources/awscc_appsync_resolver/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_appsync_source_api_association -identifier AssociationArn -- ../../examples/resources/awscc_appsync_source_api_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_apptest_test_case -identifier TestCaseId -- ../../examples/resources/awscc_apptest_test_case/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_applicationautoscaling_scalable_target -identifier ResourceId,ScalableDimension,ServiceNamespace -- ../../examples/resources/awscc_applicationautoscaling_scalable_target/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_applicationautoscaling_scaling_policy -identifier Arn,ScalableDimension -- ../../examples/resources/awscc_applicationautoscaling_scaling_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_applicationinsights_application -identifier ApplicationARN -- ../../examples/resources/awscc_applicationinsights_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_applicationsignals_service_level_objective -identifier Arn -- ../../examples/resources/awscc_applicationsignals_service_level_objective/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_athena_capacity_reservation -identifier Arn -- ../../examples/resources/awscc_athena_capacity_reservation/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_athena_data_catalog -identifier Name -- ../../examples/resources/awscc_athena_data_catalog/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_athena_named_query -identifier NamedQueryId -- ../../examples/resources/awscc_athena_named_query/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_athena_prepared_statement -identifier StatementName,WorkGroup -- ../../examples/resources/awscc_athena_prepared_statement/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_athena_work_group -identifier Name -- ../../examples/resources/awscc_athena_work_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_auditmanager_assessment -identifier AssessmentId -- ../../examples/resources/awscc_auditmanager_assessment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_autoscaling_auto_scaling_group -identifier AutoScalingGroupName -- ../../examples/resources/awscc_autoscaling_auto_scaling_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_autoscaling_launch_configuration -identifier LaunchConfigurationName -- ../../examples/resources/awscc_autoscaling_launch_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_autoscaling_lifecycle_hook -identifier AutoScalingGroupName,LifecycleHookName -- ../../examples/resources/awscc_autoscaling_lifecycle_hook/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_autoscaling_scaling_policy -identifier Arn -- ../../examples/resources/awscc_autoscaling_scaling_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_autoscaling_scheduled_action -identifier ScheduledActionName,AutoScalingGroupName -- ../../examples/resources/awscc_autoscaling_scheduled_action/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_autoscaling_warm_pool -identifier AutoScalingGroupName -- ../../examples/resources/awscc_autoscaling_warm_pool/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_b2bi_capability -identifier CapabilityId -- ../../examples/resources/awscc_b2bi_capability/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_b2bi_partnership -identifier PartnershipId -- ../../examples/resources/awscc_b2bi_partnership/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_b2bi_profile -identifier ProfileId -- ../../examples/resources/awscc_b2bi_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_b2bi_transformer -identifier TransformerId -- ../../examples/resources/awscc_b2bi_transformer/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_backup_backup_plan -identifier BackupPlanId -- ../../examples/resources/awscc_backup_backup_plan/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_backup_backup_selection -identifier Id -- ../../examples/resources/awscc_backup_backup_selection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_backup_backup_vault -identifier BackupVaultName -- ../../examples/resources/awscc_backup_backup_vault/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_backup_framework -identifier FrameworkArn -- ../../examples/resources/awscc_backup_framework/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_backup_report_plan -identifier ReportPlanArn -- ../../examples/resources/awscc_backup_report_plan/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_backup_restore_testing_plan -identifier RestoreTestingPlanName -- ../../examples/resources/awscc_backup_restore_testing_plan/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_backup_restore_testing_selection -identifier RestoreTestingPlanName,RestoreTestingSelectionName -- ../../examples/resources/awscc_backup_restore_testing_selection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_backupgateway_hypervisor -identifier HypervisorArn -- ../../examples/resources/awscc_backupgateway_hypervisor/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_batch_compute_environment -identifier ComputeEnvironmentArn -- ../../examples/resources/awscc_batch_compute_environment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_batch_job_queue -identifier JobQueueArn -- ../../examples/resources/awscc_batch_job_queue/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_batch_scheduling_policy -identifier Arn -- ../../examples/resources/awscc_batch_scheduling_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_bedrock_agent -identifier AgentId -- ../../examples/resources/awscc_bedrock_agent/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_bedrock_agent_alias -identifier AgentId,AgentAliasId -- ../../examples/resources/awscc_bedrock_agent_alias/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_bedrock_data_source -identifier KnowledgeBaseId,DataSourceId -- ../../examples/resources/awscc_bedrock_data_source/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_bedrock_flow_alias -identifier Arn,FlowArn -- ../../examples/resources/awscc_bedrock_flow_alias/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_bedrock_flow_version -identifier FlowArn,Version -- ../../examples/resources/awscc_bedrock_flow_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_bedrock_guardrail -identifier GuardrailArn -- ../../examples/resources/awscc_bedrock_guardrail/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_bedrock_guardrail_version -identifier GuardrailId,Version -- ../../examples/resources/awscc_bedrock_guardrail_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_bedrock_knowledge_base -identifier KnowledgeBaseId -- ../../examples/resources/awscc_bedrock_knowledge_base/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_bedrock_prompt -identifier Arn -- ../../examples/resources/awscc_bedrock_prompt/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_bedrock_prompt_version -identifier Arn -- ../../examples/resources/awscc_bedrock_prompt_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_billingconductor_billing_group -identifier Arn -- ../../examples/resources/awscc_billingconductor_billing_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_billingconductor_custom_line_item -identifier Arn -- ../../examples/resources/awscc_billingconductor_custom_line_item/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_billingconductor_pricing_plan -identifier Arn -- ../../examples/resources/awscc_billingconductor_pricing_plan/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_billingconductor_pricing_rule -identifier Arn -- ../../examples/resources/awscc_billingconductor_pricing_rule/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_budgets_budgets_action -identifier ActionId,BudgetName -- ../../examples/resources/awscc_budgets_budgets_action/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ce_anomaly_monitor -identifier MonitorArn -- ../../examples/resources/awscc_ce_anomaly_monitor/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ce_anomaly_subscription -identifier SubscriptionArn -- ../../examples/resources/awscc_ce_anomaly_subscription/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ce_cost_category -identifier Arn -- ../../examples/resources/awscc_ce_cost_category/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cur_report_definition -identifier ReportName -- ../../examples/resources/awscc_cur_report_definition/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cassandra_keyspace -identifier KeyspaceName -- ../../examples/resources/awscc_cassandra_keyspace/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cassandra_table -identifier KeyspaceName,TableName -- ../../examples/resources/awscc_cassandra_table/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_certificatemanager_account -identifier AccountId -- ../../examples/resources/awscc_certificatemanager_account/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_chatbot_microsoft_teams_channel_configuration -identifier Arn -- ../../examples/resources/awscc_chatbot_microsoft_teams_channel_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_chatbot_slack_channel_configuration -identifier Arn -- ../../examples/resources/awscc_chatbot_slack_channel_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cleanrooms_analysis_template -identifier AnalysisTemplateIdentifier,MembershipIdentifier -- ../../examples/resources/awscc_cleanrooms_analysis_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cleanrooms_collaboration -identifier CollaborationIdentifier -- ../../examples/resources/awscc_cleanrooms_collaboration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cleanrooms_configured_table -identifier ConfiguredTableIdentifier -- ../../examples/resources/awscc_cleanrooms_configured_table/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cleanrooms_configured_table_association -identifier ConfiguredTableAssociationIdentifier,MembershipIdentifier -- ../../examples/resources/awscc_cleanrooms_configured_table_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cleanrooms_id_mapping_table -identifier IdMappingTableIdentifier,MembershipIdentifier -- ../../examples/resources/awscc_cleanrooms_id_mapping_table/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cleanrooms_membership -identifier MembershipIdentifier -- ../../examples/resources/awscc_cleanrooms_membership/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cleanrooms_privacy_budget_template -identifier PrivacyBudgetTemplateIdentifier,MembershipIdentifier -- ../../examples/resources/awscc_cleanrooms_privacy_budget_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cleanroomsml_training_dataset -identifier TrainingDatasetArn -- ../../examples/resources/awscc_cleanroomsml_training_dataset/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudformation_hook_default_version -identifier Arn -- ../../examples/resources/awscc_cloudformation_hook_default_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudformation_hook_type_config -identifier ConfigurationArn -- ../../examples/resources/awscc_cloudformation_hook_type_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudformation_hook_version -identifier Arn -- ../../examples/resources/awscc_cloudformation_hook_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudformation_module_default_version -identifier Arn -- ../../examples/resources/awscc_cloudformation_module_default_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudformation_module_version -identifier Arn -- ../../examples/resources/awscc_cloudformation_module_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudformation_public_type_version -identifier PublicTypeArn -- ../../examples/resources/awscc_cloudformation_public_type_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudformation_publisher -identifier PublisherId -- ../../examples/resources/awscc_cloudformation_publisher/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudformation_resource_default_version -identifier Arn -- ../../examples/resources/awscc_cloudformation_resource_default_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudformation_resource_version -identifier Arn -- ../../examples/resources/awscc_cloudformation_resource_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudformation_stack -identifier StackId -- ../../examples/resources/awscc_cloudformation_stack/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudformation_stack_set -identifier StackSetId -- ../../examples/resources/awscc_cloudformation_stack_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudformation_type_activation -identifier Arn -- ../../examples/resources/awscc_cloudformation_type_activation/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudfront_cache_policy -identifier Id -- ../../examples/resources/awscc_cloudfront_cache_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudfront_cloudfront_origin_access_identity -identifier Id -- ../../examples/resources/awscc_cloudfront_cloudfront_origin_access_identity/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudfront_continuous_deployment_policy -identifier Id -- ../../examples/resources/awscc_cloudfront_continuous_deployment_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudfront_distribution -identifier Id -- ../../examples/resources/awscc_cloudfront_distribution/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudfront_function -identifier FunctionARN -- ../../examples/resources/awscc_cloudfront_function/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudfront_key_group -identifier Id -- ../../examples/resources/awscc_cloudfront_key_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudfront_key_value_store -identifier Name -- ../../examples/resources/awscc_cloudfront_key_value_store/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudfront_monitoring_subscription -identifier DistributionId -- ../../examples/resources/awscc_cloudfront_monitoring_subscription/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudfront_origin_access_control -identifier Id -- ../../examples/resources/awscc_cloudfront_origin_access_control/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudfront_origin_request_policy -identifier Id -- ../../examples/resources/awscc_cloudfront_origin_request_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudfront_public_key -identifier Id -- ../../examples/resources/awscc_cloudfront_public_key/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudfront_realtime_log_config -identifier Arn -- ../../examples/resources/awscc_cloudfront_realtime_log_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudfront_response_headers_policy -identifier Id -- ../../examples/resources/awscc_cloudfront_response_headers_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudtrail_channel -identifier ChannelArn -- ../../examples/resources/awscc_cloudtrail_channel/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudtrail_event_data_store -identifier EventDataStoreArn -- ../../examples/resources/awscc_cloudtrail_event_data_store/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudtrail_resource_policy -identifier ResourceArn -- ../../examples/resources/awscc_cloudtrail_resource_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudtrail_trail -identifier TrailName -- ../../examples/resources/awscc_cloudtrail_trail/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudwatch_alarm -identifier AlarmName -- ../../examples/resources/awscc_cloudwatch_alarm/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudwatch_composite_alarm -identifier AlarmName -- ../../examples/resources/awscc_cloudwatch_composite_alarm/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudwatch_dashboard -identifier DashboardName -- ../../examples/resources/awscc_cloudwatch_dashboard/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cloudwatch_metric_stream -identifier Name -- ../../examples/resources/awscc_cloudwatch_metric_stream/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codeartifact_domain -identifier Arn -- ../../examples/resources/awscc_codeartifact_domain/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codeartifact_package_group -identifier Arn -- ../../examples/resources/awscc_codeartifact_package_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codeartifact_repository -identifier Arn -- ../../examples/resources/awscc_codeartifact_repository/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codebuild_fleet -identifier Arn -- ../../examples/resources/awscc_codebuild_fleet/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codeconnections_connection -identifier ConnectionArn -- ../../examples/resources/awscc_codeconnections_connection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codedeploy_application -identifier ApplicationName -- ../../examples/resources/awscc_codedeploy_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codedeploy_deployment_config -identifier DeploymentConfigName -- ../../examples/resources/awscc_codedeploy_deployment_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codeguruprofiler_profiling_group -identifier ProfilingGroupName -- ../../examples/resources/awscc_codeguruprofiler_profiling_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codegurureviewer_repository_association -identifier AssociationArn -- ../../examples/resources/awscc_codegurureviewer_repository_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codepipeline_custom_action_type -identifier Category,Provider,Version -- ../../examples/resources/awscc_codepipeline_custom_action_type/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codepipeline_pipeline -identifier Name -- ../../examples/resources/awscc_codepipeline_pipeline/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codestarconnections_connection -identifier ConnectionArn -- ../../examples/resources/awscc_codestarconnections_connection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codestarconnections_repository_link -identifier RepositoryLinkArn -- ../../examples/resources/awscc_codestarconnections_repository_link/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codestarconnections_sync_configuration -identifier ResourceName,SyncType -- ../../examples/resources/awscc_codestarconnections_sync_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_codestarnotifications_notification_rule -identifier Arn -- ../../examples/resources/awscc_codestarnotifications_notification_rule/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cognito_identity_pool -identifier Id -- ../../examples/resources/awscc_cognito_identity_pool/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cognito_identity_pool_principal_tag -identifier IdentityPoolId,IdentityProviderName -- ../../examples/resources/awscc_cognito_identity_pool_principal_tag/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cognito_identity_pool_role_attachment -identifier Id -- ../../examples/resources/awscc_cognito_identity_pool_role_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cognito_log_delivery_configuration -identifier Id -- ../../examples/resources/awscc_cognito_log_delivery_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cognito_user_pool_client -identifier UserPoolId,ClientId -- ../../examples/resources/awscc_cognito_user_pool_client/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cognito_user_pool_group -identifier UserPoolId,GroupName -- ../../examples/resources/awscc_cognito_user_pool_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cognito_user_pool_resource_server -identifier UserPoolId,Identifier -- ../../examples/resources/awscc_cognito_user_pool_resource_server/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cognito_user_pool_risk_configuration_attachment -identifier UserPoolId,ClientId -- ../../examples/resources/awscc_cognito_user_pool_risk_configuration_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cognito_user_pool_ui_customization_attachment -identifier UserPoolId,ClientId -- ../../examples/resources/awscc_cognito_user_pool_ui_customization_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cognito_user_pool_user -identifier UserPoolId,Username -- ../../examples/resources/awscc_cognito_user_pool_user/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_cognito_user_pool_user_to_group_attachment -identifier UserPoolId,GroupName,Username -- ../../examples/resources/awscc_cognito_user_pool_user_to_group_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_comprehend_document_classifier -identifier Arn -- ../../examples/resources/awscc_comprehend_document_classifier/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_comprehend_flywheel -identifier Arn -- ../../examples/resources/awscc_comprehend_flywheel/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_config_aggregation_authorization -identifier AuthorizedAccountId,AuthorizedAwsRegion -- ../../examples/resources/awscc_config_aggregation_authorization/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_config_config_rule -identifier ConfigRuleName -- ../../examples/resources/awscc_config_config_rule/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_config_configuration_aggregator -identifier ConfigurationAggregatorName -- ../../examples/resources/awscc_config_configuration_aggregator/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_config_conformance_pack -identifier ConformancePackName -- ../../examples/resources/awscc_config_conformance_pack/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_config_organization_conformance_pack -identifier OrganizationConformancePackName -- ../../examples/resources/awscc_config_organization_conformance_pack/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_config_stored_query -identifier QueryName -- ../../examples/resources/awscc_config_stored_query/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_approved_origin -identifier InstanceId,Origin -- ../../examples/resources/awscc_connect_approved_origin/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_contact_flow -identifier ContactFlowArn -- ../../examples/resources/awscc_connect_contact_flow/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_contact_flow_module -identifier ContactFlowModuleArn -- ../../examples/resources/awscc_connect_contact_flow_module/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_hours_of_operation -identifier HoursOfOperationArn -- ../../examples/resources/awscc_connect_hours_of_operation/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_instance -identifier Arn -- ../../examples/resources/awscc_connect_instance/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_instance_storage_config -identifier InstanceArn,AssociationId,ResourceType -- ../../examples/resources/awscc_connect_instance_storage_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_integration_association -identifier InstanceId,IntegrationType,IntegrationArn -- ../../examples/resources/awscc_connect_integration_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_phone_number -identifier PhoneNumberArn -- ../../examples/resources/awscc_connect_phone_number/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_predefined_attribute -identifier InstanceArn,Name -- ../../examples/resources/awscc_connect_predefined_attribute/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_prompt -identifier PromptArn -- ../../examples/resources/awscc_connect_prompt/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_queue -identifier QueueArn -- ../../examples/resources/awscc_connect_queue/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_quick_connect -identifier QuickConnectArn -- ../../examples/resources/awscc_connect_quick_connect/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_routing_profile -identifier RoutingProfileArn -- ../../examples/resources/awscc_connect_routing_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_security_key -identifier InstanceId,AssociationId -- ../../examples/resources/awscc_connect_security_key/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_security_profile -identifier SecurityProfileArn -- ../../examples/resources/awscc_connect_security_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_task_template -identifier Arn -- ../../examples/resources/awscc_connect_task_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_traffic_distribution_group -identifier TrafficDistributionGroupArn -- ../../examples/resources/awscc_connect_traffic_distribution_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_user -identifier UserArn -- ../../examples/resources/awscc_connect_user/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_user_hierarchy_group -identifier UserHierarchyGroupArn -- ../../examples/resources/awscc_connect_user_hierarchy_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_view -identifier ViewArn -- ../../examples/resources/awscc_connect_view/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connect_view_version -identifier ViewVersionArn -- ../../examples/resources/awscc_connect_view_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_connectcampaigns_campaign -identifier Arn -- ../../examples/resources/awscc_connectcampaigns_campaign/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_controltower_enabled_control -identifier TargetIdentifier,ControlIdentifier -- ../../examples/resources/awscc_controltower_enabled_control/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_customerprofiles_calculated_attribute_definition -identifier DomainName,CalculatedAttributeName -- ../../examples/resources/awscc_customerprofiles_calculated_attribute_definition/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_customerprofiles_domain -identifier DomainName -- ../../examples/resources/awscc_customerprofiles_domain/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_customerprofiles_event_stream -identifier DomainName,EventStreamName -- ../../examples/resources/awscc_customerprofiles_event_stream/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_customerprofiles_integration -identifier DomainName,Uri -- ../../examples/resources/awscc_customerprofiles_integration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_customerprofiles_object_type -identifier DomainName,ObjectTypeName -- ../../examples/resources/awscc_customerprofiles_object_type/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_dms_data_provider -identifier DataProviderArn -- ../../examples/resources/awscc_dms_data_provider/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_dms_instance_profile -identifier InstanceProfileArn -- ../../examples/resources/awscc_dms_instance_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_dms_migration_project -identifier MigrationProjectArn -- ../../examples/resources/awscc_dms_migration_project/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_dms_replication_config -identifier ReplicationConfigArn -- ../../examples/resources/awscc_dms_replication_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_databrew_dataset -identifier Name -- ../../examples/resources/awscc_databrew_dataset/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_databrew_job -identifier Name -- ../../examples/resources/awscc_databrew_job/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_databrew_project -identifier Name -- ../../examples/resources/awscc_databrew_project/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_databrew_ruleset -identifier Name -- ../../examples/resources/awscc_databrew_ruleset/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_databrew_schedule -identifier Name -- ../../examples/resources/awscc_databrew_schedule/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datapipeline_pipeline -identifier PipelineId -- ../../examples/resources/awscc_datapipeline_pipeline/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_agent -identifier AgentArn -- ../../examples/resources/awscc_datasync_agent/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_location_azure_blob -identifier LocationArn -- ../../examples/resources/awscc_datasync_location_azure_blob/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_location_efs -identifier LocationArn -- ../../examples/resources/awscc_datasync_location_efs/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_location_fsx_lustre -identifier LocationArn -- ../../examples/resources/awscc_datasync_location_fsx_lustre/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_location_fsx_ontap -identifier LocationArn -- ../../examples/resources/awscc_datasync_location_fsx_ontap/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_location_fsx_open_zfs -identifier LocationArn -- ../../examples/resources/awscc_datasync_location_fsx_open_zfs/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_location_fsx_windows -identifier LocationArn -- ../../examples/resources/awscc_datasync_location_fsx_windows/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_location_hdfs -identifier LocationArn -- ../../examples/resources/awscc_datasync_location_hdfs/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_location_nfs -identifier LocationArn -- ../../examples/resources/awscc_datasync_location_nfs/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_location_object_storage -identifier LocationArn -- ../../examples/resources/awscc_datasync_location_object_storage/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_location_s3 -identifier LocationArn -- ../../examples/resources/awscc_datasync_location_s3/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_location_smb -identifier LocationArn -- ../../examples/resources/awscc_datasync_location_smb/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_storage_system -identifier StorageSystemArn -- ../../examples/resources/awscc_datasync_storage_system/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datasync_task -identifier TaskArn -- ../../examples/resources/awscc_datasync_task/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datazone_data_source -identifier DomainId,Id -- ../../examples/resources/awscc_datazone_data_source/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datazone_domain -identifier Id -- ../../examples/resources/awscc_datazone_domain/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datazone_environment -identifier DomainId,Id -- ../../examples/resources/awscc_datazone_environment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datazone_environment_blueprint_configuration -identifier DomainId,EnvironmentBlueprintId -- ../../examples/resources/awscc_datazone_environment_blueprint_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datazone_environment_profile -identifier DomainId,Id -- ../../examples/resources/awscc_datazone_environment_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datazone_group_profile -identifier DomainId,Id -- ../../examples/resources/awscc_datazone_group_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datazone_project -identifier DomainId,Id -- ../../examples/resources/awscc_datazone_project/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datazone_project_membership -identifier DomainIdentifier,MemberIdentifier,MemberIdentifierType,ProjectIdentifier -- ../../examples/resources/awscc_datazone_project_membership/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datazone_subscription_target -identifier DomainId,EnvironmentId,Id -- ../../examples/resources/awscc_datazone_subscription_target/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_datazone_user_profile -identifier DomainId,Id -- ../../examples/resources/awscc_datazone_user_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_deadline_farm -identifier Arn -- ../../examples/resources/awscc_deadline_farm/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_deadline_fleet -identifier Arn -- ../../examples/resources/awscc_deadline_fleet/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_deadline_license_endpoint -identifier Arn -- ../../examples/resources/awscc_deadline_license_endpoint/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_deadline_metered_product -identifier Arn -- ../../examples/resources/awscc_deadline_metered_product/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_deadline_monitor -identifier Arn -- ../../examples/resources/awscc_deadline_monitor/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_deadline_queue -identifier Arn -- ../../examples/resources/awscc_deadline_queue/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_deadline_queue_environment -identifier FarmId,QueueId,QueueEnvironmentId -- ../../examples/resources/awscc_deadline_queue_environment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_deadline_queue_fleet_association -identifier FarmId,FleetId,QueueId -- ../../examples/resources/awscc_deadline_queue_fleet_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_deadline_storage_profile -identifier FarmId,StorageProfileId -- ../../examples/resources/awscc_deadline_storage_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_detective_graph -identifier Arn -- ../../examples/resources/awscc_detective_graph/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_detective_member_invitation -identifier GraphArn,MemberId -- ../../examples/resources/awscc_detective_member_invitation/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_detective_organization_admin -identifier AccountId -- ../../examples/resources/awscc_detective_organization_admin/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_devopsguru_log_anomaly_detection_integration -identifier AccountId -- ../../examples/resources/awscc_devopsguru_log_anomaly_detection_integration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_devopsguru_notification_channel -identifier Id -- ../../examples/resources/awscc_devopsguru_notification_channel/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_devopsguru_resource_collection -identifier ResourceCollectionType -- ../../examples/resources/awscc_devopsguru_resource_collection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_directoryservice_simple_ad -identifier DirectoryId -- ../../examples/resources/awscc_directoryservice_simple_ad/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_docdbelastic_cluster -identifier ClusterArn -- ../../examples/resources/awscc_docdbelastic_cluster/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_dynamodb_global_table -identifier TableName -- ../../examples/resources/awscc_dynamodb_global_table/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_dynamodb_table -identifier TableName -- ../../examples/resources/awscc_dynamodb_table/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_capacity_reservation -identifier Id -- ../../examples/resources/awscc_ec2_capacity_reservation/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_capacity_reservation_fleet -identifier CapacityReservationFleetId -- ../../examples/resources/awscc_ec2_capacity_reservation_fleet/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_carrier_gateway -identifier CarrierGatewayId -- ../../examples/resources/awscc_ec2_carrier_gateway/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_customer_gateway -identifier CustomerGatewayId -- ../../examples/resources/awscc_ec2_customer_gateway/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_dhcp_options -identifier DhcpOptionsId -- ../../examples/resources/awscc_ec2_dhcp_options/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_ec2_fleet -identifier FleetId -- ../../examples/resources/awscc_ec2_ec2_fleet/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_eip -identifier PublicIp,AllocationId -- ../../examples/resources/awscc_ec2_eip/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_eip_association -identifier Id -- ../../examples/resources/awscc_ec2_eip_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_egress_only_internet_gateway -identifier Id -- ../../examples/resources/awscc_ec2_egress_only_internet_gateway/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_enclave_certificate_iam_role_association -identifier CertificateArn,RoleArn -- ../../examples/resources/awscc_ec2_enclave_certificate_iam_role_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_flow_log -identifier Id -- ../../examples/resources/awscc_ec2_flow_log/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_gateway_route_table_association -identifier GatewayId -- ../../examples/resources/awscc_ec2_gateway_route_table_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_host -identifier HostId -- ../../examples/resources/awscc_ec2_host/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_ipam -identifier IpamId -- ../../examples/resources/awscc_ec2_ipam/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_ipam_allocation -identifier IpamPoolId,IpamPoolAllocationId,Cidr -- ../../examples/resources/awscc_ec2_ipam_allocation/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_ipam_pool -identifier IpamPoolId -- ../../examples/resources/awscc_ec2_ipam_pool/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_ipam_pool_cidr -identifier IpamPoolId,IpamPoolCidrId -- ../../examples/resources/awscc_ec2_ipam_pool_cidr/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_ipam_resource_discovery -identifier IpamResourceDiscoveryId -- ../../examples/resources/awscc_ec2_ipam_resource_discovery/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_ipam_resource_discovery_association -identifier IpamResourceDiscoveryAssociationId -- ../../examples/resources/awscc_ec2_ipam_resource_discovery_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_ipam_scope -identifier IpamScopeId -- ../../examples/resources/awscc_ec2_ipam_scope/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_instance -identifier InstanceId -- ../../examples/resources/awscc_ec2_instance/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_instance_connect_endpoint -identifier Id -- ../../examples/resources/awscc_ec2_instance_connect_endpoint/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_internet_gateway -identifier InternetGatewayId -- ../../examples/resources/awscc_ec2_internet_gateway/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_key_pair -identifier KeyName -- ../../examples/resources/awscc_ec2_key_pair/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_launch_template -identifier LaunchTemplateId -- ../../examples/resources/awscc_ec2_launch_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_local_gateway_route -identifier DestinationCidrBlock,LocalGatewayRouteTableId -- ../../examples/resources/awscc_ec2_local_gateway_route/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_local_gateway_route_table -identifier LocalGatewayRouteTableId -- ../../examples/resources/awscc_ec2_local_gateway_route_table/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_local_gateway_route_table_vpc_association -identifier LocalGatewayRouteTableVpcAssociationId -- ../../examples/resources/awscc_ec2_local_gateway_route_table_vpc_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_local_gateway_route_table_virtual_interface_group_association -identifier LocalGatewayRouteTableVirtualInterfaceGroupAssociationId -- ../../examples/resources/awscc_ec2_local_gateway_route_table_virtual_interface_group_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_nat_gateway -identifier NatGatewayId -- ../../examples/resources/awscc_ec2_nat_gateway/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_network_acl -identifier Id -- ../../examples/resources/awscc_ec2_network_acl/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_network_insights_access_scope -identifier NetworkInsightsAccessScopeId -- ../../examples/resources/awscc_ec2_network_insights_access_scope/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_network_insights_access_scope_analysis -identifier NetworkInsightsAccessScopeAnalysisId -- ../../examples/resources/awscc_ec2_network_insights_access_scope_analysis/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_network_insights_analysis -identifier NetworkInsightsAnalysisId -- ../../examples/resources/awscc_ec2_network_insights_analysis/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_network_insights_path -identifier NetworkInsightsPathId -- ../../examples/resources/awscc_ec2_network_insights_path/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_network_interface -identifier Id -- ../../examples/resources/awscc_ec2_network_interface/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_network_interface_attachment -identifier AttachmentId -- ../../examples/resources/awscc_ec2_network_interface_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_network_performance_metric_subscription -identifier Source,Destination,Metric,Statistic -- ../../examples/resources/awscc_ec2_network_performance_metric_subscription/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_placement_group -identifier GroupName -- ../../examples/resources/awscc_ec2_placement_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_prefix_list -identifier PrefixListId -- ../../examples/resources/awscc_ec2_prefix_list/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_route -identifier RouteTableId,CidrBlock -- ../../examples/resources/awscc_ec2_route/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_route_table -identifier RouteTableId -- ../../examples/resources/awscc_ec2_route_table/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_security_group -identifier Id -- ../../examples/resources/awscc_ec2_security_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_security_group_egress -identifier Id -- ../../examples/resources/awscc_ec2_security_group_egress/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_security_group_ingress -identifier Id -- ../../examples/resources/awscc_ec2_security_group_ingress/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_snapshot_block_public_access -identifier AccountId -- ../../examples/resources/awscc_ec2_snapshot_block_public_access/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_spot_fleet -identifier Id -- ../../examples/resources/awscc_ec2_spot_fleet/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_subnet -identifier SubnetId -- ../../examples/resources/awscc_ec2_subnet/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_subnet_cidr_block -identifier Id -- ../../examples/resources/awscc_ec2_subnet_cidr_block/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_subnet_network_acl_association -identifier AssociationId -- ../../examples/resources/awscc_ec2_subnet_network_acl_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_subnet_route_table_association -identifier Id -- ../../examples/resources/awscc_ec2_subnet_route_table_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_transit_gateway -identifier Id -- ../../examples/resources/awscc_ec2_transit_gateway/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_transit_gateway_attachment -identifier Id -- ../../examples/resources/awscc_ec2_transit_gateway_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_transit_gateway_connect -identifier TransitGatewayAttachmentId -- ../../examples/resources/awscc_ec2_transit_gateway_connect/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_transit_gateway_multicast_domain -identifier TransitGatewayMulticastDomainId -- ../../examples/resources/awscc_ec2_transit_gateway_multicast_domain/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_transit_gateway_multicast_domain_association -identifier TransitGatewayMulticastDomainId,TransitGatewayAttachmentId,SubnetId -- ../../examples/resources/awscc_ec2_transit_gateway_multicast_domain_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_transit_gateway_multicast_group_member -identifier TransitGatewayMulticastDomainId,GroupIpAddress,NetworkInterfaceId -- ../../examples/resources/awscc_ec2_transit_gateway_multicast_group_member/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_transit_gateway_multicast_group_source -identifier TransitGatewayMulticastDomainId,GroupIpAddress,NetworkInterfaceId -- ../../examples/resources/awscc_ec2_transit_gateway_multicast_group_source/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_transit_gateway_peering_attachment -identifier TransitGatewayAttachmentId -- ../../examples/resources/awscc_ec2_transit_gateway_peering_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_transit_gateway_route -identifier TransitGatewayRouteTableId,DestinationCidrBlock -- ../../examples/resources/awscc_ec2_transit_gateway_route/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_transit_gateway_route_table -identifier TransitGatewayRouteTableId -- ../../examples/resources/awscc_ec2_transit_gateway_route_table/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_transit_gateway_route_table_association -identifier TransitGatewayRouteTableId,TransitGatewayAttachmentId -- ../../examples/resources/awscc_ec2_transit_gateway_route_table_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_transit_gateway_route_table_propagation -identifier TransitGatewayRouteTableId,TransitGatewayAttachmentId -- ../../examples/resources/awscc_ec2_transit_gateway_route_table_propagation/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_transit_gateway_vpc_attachment -identifier Id -- ../../examples/resources/awscc_ec2_transit_gateway_vpc_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_vpc -identifier VpcId -- ../../examples/resources/awscc_ec2_vpc/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_vpc_cidr_block -identifier Id,VpcId -- ../../examples/resources/awscc_ec2_vpc_cidr_block/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_vpcdhcp_options_association -identifier DhcpOptionsId,VpcId -- ../../examples/resources/awscc_ec2_vpcdhcp_options_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_vpc_endpoint -identifier Id -- ../../examples/resources/awscc_ec2_vpc_endpoint/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_vpc_endpoint_connection_notification -identifier VPCEndpointConnectionNotificationId -- ../../examples/resources/awscc_ec2_vpc_endpoint_connection_notification/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_vpc_endpoint_service -identifier ServiceId -- ../../examples/resources/awscc_ec2_vpc_endpoint_service/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_vpc_endpoint_service_permissions -identifier ServiceId -- ../../examples/resources/awscc_ec2_vpc_endpoint_service_permissions/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_vpc_gateway_attachment -identifier AttachmentType,VpcId -- ../../examples/resources/awscc_ec2_vpc_gateway_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_vpc_peering_connection -identifier Id -- ../../examples/resources/awscc_ec2_vpc_peering_connection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_vpn_connection -identifier VpnConnectionId -- ../../examples/resources/awscc_ec2_vpn_connection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_vpn_connection_route -identifier DestinationCidrBlock,VpnConnectionId -- ../../examples/resources/awscc_ec2_vpn_connection_route/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_vpn_gateway -identifier VPNGatewayId -- ../../examples/resources/awscc_ec2_vpn_gateway/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_verified_access_endpoint -identifier VerifiedAccessEndpointId -- ../../examples/resources/awscc_ec2_verified_access_endpoint/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_verified_access_group -identifier VerifiedAccessGroupId -- ../../examples/resources/awscc_ec2_verified_access_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_verified_access_instance -identifier VerifiedAccessInstanceId -- ../../examples/resources/awscc_ec2_verified_access_instance/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_verified_access_trust_provider -identifier VerifiedAccessTrustProviderId -- ../../examples/resources/awscc_ec2_verified_access_trust_provider/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_volume -identifier VolumeId -- ../../examples/resources/awscc_ec2_volume/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ec2_volume_attachment -identifier VolumeId,InstanceId -- ../../examples/resources/awscc_ec2_volume_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ecr_public_repository -identifier RepositoryName -- ../../examples/resources/awscc_ecr_public_repository/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ecr_pull_through_cache_rule -identifier EcrRepositoryPrefix -- ../../examples/resources/awscc_ecr_pull_through_cache_rule/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ecr_registry_policy -identifier RegistryId -- ../../examples/resources/awscc_ecr_registry_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ecr_replication_configuration -identifier RegistryId -- ../../examples/resources/awscc_ecr_replication_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ecr_repository -identifier RepositoryName -- ../../examples/resources/awscc_ecr_repository/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ecr_repository_creation_template -identifier Prefix -- ../../examples/resources/awscc_ecr_repository_creation_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ecs_capacity_provider -identifier Name -- ../../examples/resources/awscc_ecs_capacity_provider/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ecs_cluster -identifier ClusterName -- ../../examples/resources/awscc_ecs_cluster/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ecs_cluster_capacity_provider_associations -identifier Cluster -- ../../examples/resources/awscc_ecs_cluster_capacity_provider_associations/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ecs_primary_task_set -identifier Cluster,Service -- ../../examples/resources/awscc_ecs_primary_task_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ecs_service -identifier ServiceArn,Cluster -- ../../examples/resources/awscc_ecs_service/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ecs_task_definition -identifier TaskDefinitionArn -- ../../examples/resources/awscc_ecs_task_definition/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ecs_task_set -identifier Cluster,Service,Id -- ../../examples/resources/awscc_ecs_task_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_efs_access_point -identifier AccessPointId -- ../../examples/resources/awscc_efs_access_point/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_efs_file_system -identifier FileSystemId -- ../../examples/resources/awscc_efs_file_system/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_efs_mount_target -identifier Id -- ../../examples/resources/awscc_efs_mount_target/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_eks_access_entry -identifier PrincipalArn,ClusterName -- ../../examples/resources/awscc_eks_access_entry/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_eks_addon -identifier ClusterName,AddonName -- ../../examples/resources/awscc_eks_addon/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_eks_cluster -identifier Name -- ../../examples/resources/awscc_eks_cluster/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_eks_fargate_profile -identifier ClusterName,FargateProfileName -- ../../examples/resources/awscc_eks_fargate_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_eks_identity_provider_config -identifier IdentityProviderConfigName,ClusterName,Type -- ../../examples/resources/awscc_eks_identity_provider_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_eks_nodegroup -identifier Id -- ../../examples/resources/awscc_eks_nodegroup/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_eks_pod_identity_association -identifier AssociationArn -- ../../examples/resources/awscc_eks_pod_identity_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_emr_security_configuration -identifier Name -- ../../examples/resources/awscc_emr_security_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_emr_studio -identifier StudioId -- ../../examples/resources/awscc_emr_studio/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_emr_studio_session_mapping -identifier StudioId,IdentityType,IdentityName -- ../../examples/resources/awscc_emr_studio_session_mapping/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_emr_wal_workspace -identifier WALWorkspaceName -- ../../examples/resources/awscc_emr_wal_workspace/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_emrcontainers_virtual_cluster -identifier Id -- ../../examples/resources/awscc_emrcontainers_virtual_cluster/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_emrserverless_application -identifier ApplicationId -- ../../examples/resources/awscc_emrserverless_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticache_global_replication_group -identifier GlobalReplicationGroupId -- ../../examples/resources/awscc_elasticache_global_replication_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticache_parameter_group -identifier CacheParameterGroupName -- ../../examples/resources/awscc_elasticache_parameter_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticache_serverless_cache -identifier ServerlessCacheName -- ../../examples/resources/awscc_elasticache_serverless_cache/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticache_subnet_group -identifier CacheSubnetGroupName -- ../../examples/resources/awscc_elasticache_subnet_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticache_user -identifier UserId -- ../../examples/resources/awscc_elasticache_user/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticache_user_group -identifier UserGroupId -- ../../examples/resources/awscc_elasticache_user_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticbeanstalk_application -identifier ApplicationName -- ../../examples/resources/awscc_elasticbeanstalk_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticbeanstalk_application_version -identifier ApplicationName,Id -- ../../examples/resources/awscc_elasticbeanstalk_application_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticbeanstalk_configuration_template -identifier ApplicationName,TemplateName -- ../../examples/resources/awscc_elasticbeanstalk_configuration_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticbeanstalk_environment -identifier EnvironmentName -- ../../examples/resources/awscc_elasticbeanstalk_environment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticloadbalancingv2_load_balancer -identifier LoadBalancerArn -- ../../examples/resources/awscc_elasticloadbalancingv2_load_balancer/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticloadbalancingv2_target_group -identifier TargetGroupArn -- ../../examples/resources/awscc_elasticloadbalancingv2_target_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticloadbalancingv2_trust_store -identifier TrustStoreArn -- ../../examples/resources/awscc_elasticloadbalancingv2_trust_store/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_elasticloadbalancingv2_trust_store_revocation -identifier RevocationId,TrustStoreArn -- ../../examples/resources/awscc_elasticloadbalancingv2_trust_store_revocation/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_entityresolution_id_mapping_workflow -identifier WorkflowName -- ../../examples/resources/awscc_entityresolution_id_mapping_workflow/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_entityresolution_id_namespace -identifier IdNamespaceName -- ../../examples/resources/awscc_entityresolution_id_namespace/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_entityresolution_matching_workflow -identifier WorkflowName -- ../../examples/resources/awscc_entityresolution_matching_workflow/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_entityresolution_policy_statement -identifier Arn,StatementId -- ../../examples/resources/awscc_entityresolution_policy_statement/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_entityresolution_schema_mapping -identifier SchemaName -- ../../examples/resources/awscc_entityresolution_schema_mapping/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_eventschemas_discoverer -identifier DiscovererArn -- ../../examples/resources/awscc_eventschemas_discoverer/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_eventschemas_registry -identifier RegistryArn -- ../../examples/resources/awscc_eventschemas_registry/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_eventschemas_registry_policy -identifier Id -- ../../examples/resources/awscc_eventschemas_registry_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_eventschemas_schema -identifier SchemaArn -- ../../examples/resources/awscc_eventschemas_schema/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_events_api_destination -identifier Name -- ../../examples/resources/awscc_events_api_destination/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_events_archive -identifier ArchiveName -- ../../examples/resources/awscc_events_archive/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_events_endpoint -identifier Name -- ../../examples/resources/awscc_events_endpoint/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_events_event_bus -identifier Name -- ../../examples/resources/awscc_events_event_bus/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_events_rule -identifier Arn -- ../../examples/resources/awscc_events_rule/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_evidently_experiment -identifier Arn -- ../../examples/resources/awscc_evidently_experiment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_evidently_feature -identifier Arn -- ../../examples/resources/awscc_evidently_feature/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_evidently_launch -identifier Arn -- ../../examples/resources/awscc_evidently_launch/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_evidently_project -identifier Arn -- ../../examples/resources/awscc_evidently_project/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_evidently_segment -identifier Arn -- ../../examples/resources/awscc_evidently_segment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_fis_experiment_template -identifier Id -- ../../examples/resources/awscc_fis_experiment_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_fis_target_account_configuration -identifier ExperimentTemplateId,AccountId -- ../../examples/resources/awscc_fis_target_account_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_fms_notification_channel -identifier SnsTopicArn -- ../../examples/resources/awscc_fms_notification_channel/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_fms_policy -identifier Id -- ../../examples/resources/awscc_fms_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_fms_resource_set -identifier Id -- ../../examples/resources/awscc_fms_resource_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_fsx_data_repository_association -identifier AssociationId -- ../../examples/resources/awscc_fsx_data_repository_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_finspace_environment -identifier EnvironmentId -- ../../examples/resources/awscc_finspace_environment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_forecast_dataset -identifier Arn -- ../../examples/resources/awscc_forecast_dataset/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_forecast_dataset_group -identifier DatasetGroupArn -- ../../examples/resources/awscc_forecast_dataset_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_frauddetector_detector -identifier Arn -- ../../examples/resources/awscc_frauddetector_detector/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_frauddetector_entity_type -identifier Arn -- ../../examples/resources/awscc_frauddetector_entity_type/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_frauddetector_event_type -identifier Arn -- ../../examples/resources/awscc_frauddetector_event_type/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_frauddetector_label -identifier Arn -- ../../examples/resources/awscc_frauddetector_label/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_frauddetector_list -identifier Arn -- ../../examples/resources/awscc_frauddetector_list/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_frauddetector_outcome -identifier Arn -- ../../examples/resources/awscc_frauddetector_outcome/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_frauddetector_variable -identifier Arn -- ../../examples/resources/awscc_frauddetector_variable/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_gamelift_alias -identifier AliasId -- ../../examples/resources/awscc_gamelift_alias/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_gamelift_build -identifier BuildId -- ../../examples/resources/awscc_gamelift_build/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_gamelift_container_group_definition -identifier Name -- ../../examples/resources/awscc_gamelift_container_group_definition/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_gamelift_fleet -identifier FleetId -- ../../examples/resources/awscc_gamelift_fleet/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_gamelift_game_server_group -identifier GameServerGroupArn -- ../../examples/resources/awscc_gamelift_game_server_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_gamelift_game_session_queue -identifier Name -- ../../examples/resources/awscc_gamelift_game_session_queue/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_gamelift_location -identifier LocationName -- ../../examples/resources/awscc_gamelift_location/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_gamelift_matchmaking_configuration -identifier Name -- ../../examples/resources/awscc_gamelift_matchmaking_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_gamelift_matchmaking_rule_set -identifier Name -- ../../examples/resources/awscc_gamelift_matchmaking_rule_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_gamelift_script -identifier Id -- ../../examples/resources/awscc_gamelift_script/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_globalaccelerator_accelerator -identifier AcceleratorArn -- ../../examples/resources/awscc_globalaccelerator_accelerator/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_globalaccelerator_cross_account_attachment -identifier AttachmentArn -- ../../examples/resources/awscc_globalaccelerator_cross_account_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_globalaccelerator_endpoint_group -identifier EndpointGroupArn -- ../../examples/resources/awscc_globalaccelerator_endpoint_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_globalaccelerator_listener -identifier ListenerArn -- ../../examples/resources/awscc_globalaccelerator_listener/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_glue_database -identifier DatabaseName -- ../../examples/resources/awscc_glue_database/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_glue_registry -identifier Arn -- ../../examples/resources/awscc_glue_registry/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_glue_schema -identifier Arn -- ../../examples/resources/awscc_glue_schema/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_glue_schema_version -identifier VersionId -- ../../examples/resources/awscc_glue_schema_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_glue_schema_version_metadata -identifier SchemaVersionId,Key,Value -- ../../examples/resources/awscc_glue_schema_version_metadata/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_glue_trigger -identifier Name -- ../../examples/resources/awscc_glue_trigger/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_grafana_workspace -identifier Id -- ../../examples/resources/awscc_grafana_workspace/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_greengrassv2_component_version -identifier Arn -- ../../examples/resources/awscc_greengrassv2_component_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_greengrassv2_deployment -identifier DeploymentId -- ../../examples/resources/awscc_greengrassv2_deployment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_groundstation_config -identifier Arn -- ../../examples/resources/awscc_groundstation_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_groundstation_dataflow_endpoint_group -identifier Id -- ../../examples/resources/awscc_groundstation_dataflow_endpoint_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_groundstation_mission_profile -identifier Id,Arn -- ../../examples/resources/awscc_groundstation_mission_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_guardduty_detector -identifier Id -- ../../examples/resources/awscc_guardduty_detector/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_guardduty_filter -identifier DetectorId,Name -- ../../examples/resources/awscc_guardduty_filter/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_guardduty_ip_set -identifier Id,DetectorId -- ../../examples/resources/awscc_guardduty_ip_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_guardduty_malware_protection_plan -identifier MalwareProtectionPlanId -- ../../examples/resources/awscc_guardduty_malware_protection_plan/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_guardduty_master -identifier DetectorId,MasterId -- ../../examples/resources/awscc_guardduty_master/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_guardduty_member -identifier DetectorId,MemberId -- ../../examples/resources/awscc_guardduty_member/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_guardduty_threat_intel_set -identifier Id,DetectorId -- ../../examples/resources/awscc_guardduty_threat_intel_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_healthimaging_datastore -identifier DatastoreId -- ../../examples/resources/awscc_healthimaging_datastore/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_healthlake_fhir_datastore -identifier DatastoreId -- ../../examples/resources/awscc_healthlake_fhir_datastore/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iam_group -identifier GroupName -- ../../examples/resources/awscc_iam_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iam_group_policy -identifier PolicyName,GroupName -- ../../examples/resources/awscc_iam_group_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iam_instance_profile -identifier InstanceProfileName -- ../../examples/resources/awscc_iam_instance_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iam_managed_policy -identifier PolicyArn -- ../../examples/resources/awscc_iam_managed_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iam_oidc_provider -identifier Arn -- ../../examples/resources/awscc_iam_oidc_provider/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iam_role -identifier RoleName -- ../../examples/resources/awscc_iam_role/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iam_role_policy -identifier PolicyName,RoleName -- ../../examples/resources/awscc_iam_role_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iam_saml_provider -identifier Arn -- ../../examples/resources/awscc_iam_saml_provider/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iam_server_certificate -identifier ServerCertificateName -- ../../examples/resources/awscc_iam_server_certificate/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iam_service_linked_role -identifier RoleName -- ../../examples/resources/awscc_iam_service_linked_role/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iam_user -identifier UserName -- ../../examples/resources/awscc_iam_user/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iam_user_policy -identifier PolicyName,UserName -- ../../examples/resources/awscc_iam_user_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iam_virtual_mfa_device -identifier SerialNumber -- ../../examples/resources/awscc_iam_virtual_mfa_device/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ivs_channel -identifier Arn -- ../../examples/resources/awscc_ivs_channel/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ivs_encoder_configuration -identifier Arn -- ../../examples/resources/awscc_ivs_encoder_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ivs_playback_key_pair -identifier Arn -- ../../examples/resources/awscc_ivs_playback_key_pair/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ivs_playback_restriction_policy -identifier Arn -- ../../examples/resources/awscc_ivs_playback_restriction_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ivs_public_key -identifier Arn -- ../../examples/resources/awscc_ivs_public_key/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ivs_recording_configuration -identifier Arn -- ../../examples/resources/awscc_ivs_recording_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ivs_stage -identifier Arn -- ../../examples/resources/awscc_ivs_stage/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ivs_storage_configuration -identifier Arn -- ../../examples/resources/awscc_ivs_storage_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ivs_stream_key -identifier Arn -- ../../examples/resources/awscc_ivs_stream_key/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ivschat_logging_configuration -identifier Arn -- ../../examples/resources/awscc_ivschat_logging_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ivschat_room -identifier Arn -- ../../examples/resources/awscc_ivschat_room/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_identitystore_group -identifier GroupId,IdentityStoreId -- ../../examples/resources/awscc_identitystore_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_identitystore_group_membership -identifier MembershipId,IdentityStoreId -- ../../examples/resources/awscc_identitystore_group_membership/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_imagebuilder_component -identifier Arn -- ../../examples/resources/awscc_imagebuilder_component/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_imagebuilder_container_recipe -identifier Arn -- ../../examples/resources/awscc_imagebuilder_container_recipe/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_imagebuilder_distribution_configuration -identifier Arn -- ../../examples/resources/awscc_imagebuilder_distribution_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_imagebuilder_image -identifier Arn -- ../../examples/resources/awscc_imagebuilder_image/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_imagebuilder_image_pipeline -identifier Arn -- ../../examples/resources/awscc_imagebuilder_image_pipeline/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_imagebuilder_image_recipe -identifier Arn -- ../../examples/resources/awscc_imagebuilder_image_recipe/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_imagebuilder_infrastructure_configuration -identifier Arn -- ../../examples/resources/awscc_imagebuilder_infrastructure_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_imagebuilder_lifecycle_policy -identifier Arn -- ../../examples/resources/awscc_imagebuilder_lifecycle_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_imagebuilder_workflow -identifier Arn -- ../../examples/resources/awscc_imagebuilder_workflow/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_inspector_assessment_target -identifier Arn -- ../../examples/resources/awscc_inspector_assessment_target/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_inspector_assessment_template -identifier Arn -- ../../examples/resources/awscc_inspector_assessment_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_inspector_resource_group -identifier Arn -- ../../examples/resources/awscc_inspector_resource_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_inspectorv2_cis_scan_configuration -identifier Arn -- ../../examples/resources/awscc_inspectorv2_cis_scan_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_inspectorv2_filter -identifier Arn -- ../../examples/resources/awscc_inspectorv2_filter/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_internetmonitor_monitor -identifier MonitorName -- ../../examples/resources/awscc_internetmonitor_monitor/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_account_audit_configuration -identifier AccountId -- ../../examples/resources/awscc_iot_account_audit_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_authorizer -identifier AuthorizerName -- ../../examples/resources/awscc_iot_authorizer/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_billing_group -identifier BillingGroupName -- ../../examples/resources/awscc_iot_billing_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_ca_certificate -identifier Id -- ../../examples/resources/awscc_iot_ca_certificate/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_certificate -identifier Id -- ../../examples/resources/awscc_iot_certificate/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_certificate_provider -identifier CertificateProviderName -- ../../examples/resources/awscc_iot_certificate_provider/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_custom_metric -identifier MetricName -- ../../examples/resources/awscc_iot_custom_metric/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_dimension -identifier Name -- ../../examples/resources/awscc_iot_dimension/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_domain_configuration -identifier DomainConfigurationName -- ../../examples/resources/awscc_iot_domain_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_fleet_metric -identifier MetricName -- ../../examples/resources/awscc_iot_fleet_metric/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_job_template -identifier JobTemplateId -- ../../examples/resources/awscc_iot_job_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_logging -identifier AccountId -- ../../examples/resources/awscc_iot_logging/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_mitigation_action -identifier ActionName -- ../../examples/resources/awscc_iot_mitigation_action/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_policy -identifier Id -- ../../examples/resources/awscc_iot_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_provisioning_template -identifier TemplateName -- ../../examples/resources/awscc_iot_provisioning_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_resource_specific_logging -identifier TargetId -- ../../examples/resources/awscc_iot_resource_specific_logging/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_role_alias -identifier RoleAlias -- ../../examples/resources/awscc_iot_role_alias/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_scheduled_audit -identifier ScheduledAuditName -- ../../examples/resources/awscc_iot_scheduled_audit/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_security_profile -identifier SecurityProfileName -- ../../examples/resources/awscc_iot_security_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_software_package -identifier PackageName -- ../../examples/resources/awscc_iot_software_package/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_software_package_version -identifier PackageName,VersionName -- ../../examples/resources/awscc_iot_software_package_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_thing -identifier ThingName -- ../../examples/resources/awscc_iot_thing/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_thing_group -identifier ThingGroupName -- ../../examples/resources/awscc_iot_thing_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_thing_type -identifier ThingTypeName -- ../../examples/resources/awscc_iot_thing_type/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_topic_rule -identifier RuleName -- ../../examples/resources/awscc_iot_topic_rule/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iot_topic_rule_destination -identifier Arn -- ../../examples/resources/awscc_iot_topic_rule_destination/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotanalytics_channel -identifier ChannelName -- ../../examples/resources/awscc_iotanalytics_channel/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotanalytics_dataset -identifier DatasetName -- ../../examples/resources/awscc_iotanalytics_dataset/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotanalytics_datastore -identifier DatastoreName -- ../../examples/resources/awscc_iotanalytics_datastore/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotanalytics_pipeline -identifier PipelineName -- ../../examples/resources/awscc_iotanalytics_pipeline/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotcoredeviceadvisor_suite_definition -identifier SuiteDefinitionId -- ../../examples/resources/awscc_iotcoredeviceadvisor_suite_definition/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotevents_alarm_model -identifier AlarmModelName -- ../../examples/resources/awscc_iotevents_alarm_model/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotevents_detector_model -identifier DetectorModelName -- ../../examples/resources/awscc_iotevents_detector_model/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotevents_input -identifier InputName -- ../../examples/resources/awscc_iotevents_input/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotfleethub_application -identifier ApplicationId -- ../../examples/resources/awscc_iotfleethub_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotfleetwise_campaign -identifier Name -- ../../examples/resources/awscc_iotfleetwise_campaign/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotfleetwise_fleet -identifier Id -- ../../examples/resources/awscc_iotfleetwise_fleet/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotfleetwise_model_manifest -identifier Name -- ../../examples/resources/awscc_iotfleetwise_model_manifest/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotfleetwise_signal_catalog -identifier Name -- ../../examples/resources/awscc_iotfleetwise_signal_catalog/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotfleetwise_vehicle -identifier Name -- ../../examples/resources/awscc_iotfleetwise_vehicle/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotsitewise_access_policy -identifier AccessPolicyId -- ../../examples/resources/awscc_iotsitewise_access_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotsitewise_asset -identifier AssetId -- ../../examples/resources/awscc_iotsitewise_asset/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotsitewise_asset_model -identifier AssetModelId -- ../../examples/resources/awscc_iotsitewise_asset_model/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotsitewise_dashboard -identifier DashboardId -- ../../examples/resources/awscc_iotsitewise_dashboard/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotsitewise_gateway -identifier GatewayId -- ../../examples/resources/awscc_iotsitewise_gateway/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotsitewise_portal -identifier PortalId -- ../../examples/resources/awscc_iotsitewise_portal/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotsitewise_project -identifier ProjectId -- ../../examples/resources/awscc_iotsitewise_project/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iottwinmaker_scene -identifier WorkspaceId,SceneId -- ../../examples/resources/awscc_iottwinmaker_scene/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iottwinmaker_sync_job -identifier WorkspaceId,SyncSource -- ../../examples/resources/awscc_iottwinmaker_sync_job/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iottwinmaker_workspace -identifier WorkspaceId -- ../../examples/resources/awscc_iottwinmaker_workspace/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotwireless_destination -identifier Name -- ../../examples/resources/awscc_iotwireless_destination/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotwireless_device_profile -identifier Id -- ../../examples/resources/awscc_iotwireless_device_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotwireless_fuota_task -identifier Id -- ../../examples/resources/awscc_iotwireless_fuota_task/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotwireless_multicast_group -identifier Id -- ../../examples/resources/awscc_iotwireless_multicast_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotwireless_network_analyzer_configuration -identifier Name -- ../../examples/resources/awscc_iotwireless_network_analyzer_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotwireless_partner_account -identifier PartnerAccountId -- ../../examples/resources/awscc_iotwireless_partner_account/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotwireless_service_profile -identifier Id -- ../../examples/resources/awscc_iotwireless_service_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotwireless_task_definition -identifier Id -- ../../examples/resources/awscc_iotwireless_task_definition/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotwireless_wireless_device -identifier Id -- ../../examples/resources/awscc_iotwireless_wireless_device/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotwireless_wireless_device_import_task -identifier Id -- ../../examples/resources/awscc_iotwireless_wireless_device_import_task/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_iotwireless_wireless_gateway -identifier Id -- ../../examples/resources/awscc_iotwireless_wireless_gateway/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kms_alias -identifier AliasName -- ../../examples/resources/awscc_kms_alias/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kms_key -identifier KeyId -- ../../examples/resources/awscc_kms_key/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kms_replica_key -identifier KeyId -- ../../examples/resources/awscc_kms_replica_key/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kafkaconnect_connector -identifier ConnectorArn -- ../../examples/resources/awscc_kafkaconnect_connector/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kafkaconnect_custom_plugin -identifier CustomPluginArn -- ../../examples/resources/awscc_kafkaconnect_custom_plugin/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kafkaconnect_worker_configuration -identifier WorkerConfigurationArn -- ../../examples/resources/awscc_kafkaconnect_worker_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kendra_data_source -identifier Id,IndexId -- ../../examples/resources/awscc_kendra_data_source/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kendra_faq -identifier Id,IndexId -- ../../examples/resources/awscc_kendra_faq/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kendra_index -identifier Id -- ../../examples/resources/awscc_kendra_index/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kendraranking_execution_plan -identifier Id -- ../../examples/resources/awscc_kendraranking_execution_plan/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kinesis_stream -identifier Name -- ../../examples/resources/awscc_kinesis_stream/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kinesisanalyticsv2_application -identifier ApplicationName -- ../../examples/resources/awscc_kinesisanalyticsv2_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kinesisfirehose_delivery_stream -identifier DeliveryStreamName -- ../../examples/resources/awscc_kinesisfirehose_delivery_stream/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kinesisvideo_signaling_channel -identifier Name -- ../../examples/resources/awscc_kinesisvideo_signaling_channel/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_kinesisvideo_stream -identifier Name -- ../../examples/resources/awscc_kinesisvideo_stream/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lakeformation_data_cells_filter -identifier TableCatalogId,DatabaseName,TableName,Name -- ../../examples/resources/awscc_lakeformation_data_cells_filter/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lakeformation_principal_permissions -identifier PrincipalIdentifier,ResourceIdentifier -- ../../examples/resources/awscc_lakeformation_principal_permissions/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lakeformation_tag -identifier TagKey -- ../../examples/resources/awscc_lakeformation_tag/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lakeformation_tag_association -identifier ResourceIdentifier,TagsIdentifier -- ../../examples/resources/awscc_lakeformation_tag_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lambda_alias -identifier AliasArn -- ../../examples/resources/awscc_lambda_alias/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lambda_code_signing_config -identifier CodeSigningConfigArn -- ../../examples/resources/awscc_lambda_code_signing_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lambda_event_invoke_config -identifier FunctionName,Qualifier -- ../../examples/resources/awscc_lambda_event_invoke_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lambda_event_source_mapping -identifier Id -- ../../examples/resources/awscc_lambda_event_source_mapping/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lambda_function -identifier FunctionName -- ../../examples/resources/awscc_lambda_function/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lambda_layer_version -identifier LayerVersionArn -- ../../examples/resources/awscc_lambda_layer_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lambda_layer_version_permission -identifier Id -- ../../examples/resources/awscc_lambda_layer_version_permission/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lambda_permission -identifier FunctionName,Id -- ../../examples/resources/awscc_lambda_permission/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lambda_url -identifier FunctionArn -- ../../examples/resources/awscc_lambda_url/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lambda_version -identifier FunctionArn -- ../../examples/resources/awscc_lambda_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_launchwizard_deployment -identifier Arn -- ../../examples/resources/awscc_launchwizard_deployment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lex_bot -identifier Id -- ../../examples/resources/awscc_lex_bot/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lex_bot_alias -identifier BotAliasId,BotId -- ../../examples/resources/awscc_lex_bot_alias/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lex_bot_version -identifier BotId,BotVersion -- ../../examples/resources/awscc_lex_bot_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lex_resource_policy -identifier Id -- ../../examples/resources/awscc_lex_resource_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_licensemanager_grant -identifier GrantArn -- ../../examples/resources/awscc_licensemanager_grant/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_licensemanager_license -identifier LicenseArn -- ../../examples/resources/awscc_licensemanager_license/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lightsail_alarm -identifier AlarmName -- ../../examples/resources/awscc_lightsail_alarm/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lightsail_bucket -identifier BucketName -- ../../examples/resources/awscc_lightsail_bucket/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lightsail_certificate -identifier CertificateName -- ../../examples/resources/awscc_lightsail_certificate/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lightsail_container -identifier ServiceName -- ../../examples/resources/awscc_lightsail_container/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lightsail_database -identifier RelationalDatabaseName -- ../../examples/resources/awscc_lightsail_database/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lightsail_disk -identifier DiskName -- ../../examples/resources/awscc_lightsail_disk/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lightsail_distribution -identifier DistributionName -- ../../examples/resources/awscc_lightsail_distribution/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lightsail_instance -identifier InstanceName -- ../../examples/resources/awscc_lightsail_instance/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lightsail_load_balancer -identifier LoadBalancerName -- ../../examples/resources/awscc_lightsail_load_balancer/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lightsail_load_balancer_tls_certificate -identifier CertificateName,LoadBalancerName -- ../../examples/resources/awscc_lightsail_load_balancer_tls_certificate/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lightsail_static_ip -identifier StaticIpName -- ../../examples/resources/awscc_lightsail_static_ip/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_location_api_key -identifier KeyName -- ../../examples/resources/awscc_location_api_key/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_location_geofence_collection -identifier CollectionName -- ../../examples/resources/awscc_location_geofence_collection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_location_map -identifier MapName -- ../../examples/resources/awscc_location_map/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_location_place_index -identifier IndexName -- ../../examples/resources/awscc_location_place_index/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_location_route_calculator -identifier CalculatorName -- ../../examples/resources/awscc_location_route_calculator/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_location_tracker -identifier TrackerName -- ../../examples/resources/awscc_location_tracker/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_location_tracker_consumer -identifier TrackerName,ConsumerArn -- ../../examples/resources/awscc_location_tracker_consumer/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_logs_account_policy -identifier AccountId,PolicyType,PolicyName -- ../../examples/resources/awscc_logs_account_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_logs_delivery -identifier DeliveryId -- ../../examples/resources/awscc_logs_delivery/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_logs_delivery_destination -identifier Name -- ../../examples/resources/awscc_logs_delivery_destination/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_logs_delivery_source -identifier Name -- ../../examples/resources/awscc_logs_delivery_source/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_logs_destination -identifier DestinationName -- ../../examples/resources/awscc_logs_destination/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_logs_log_anomaly_detector -identifier AnomalyDetectorArn -- ../../examples/resources/awscc_logs_log_anomaly_detector/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_logs_log_group -identifier LogGroupName -- ../../examples/resources/awscc_logs_log_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_logs_log_stream -identifier LogGroupName,LogStreamName -- ../../examples/resources/awscc_logs_log_stream/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_logs_metric_filter -identifier LogGroupName,FilterName -- ../../examples/resources/awscc_logs_metric_filter/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_logs_query_definition -identifier QueryDefinitionId -- ../../examples/resources/awscc_logs_query_definition/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_logs_resource_policy -identifier PolicyName -- ../../examples/resources/awscc_logs_resource_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_logs_subscription_filter -identifier FilterName,LogGroupName -- ../../examples/resources/awscc_logs_subscription_filter/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lookoutequipment_inference_scheduler -identifier InferenceSchedulerName -- ../../examples/resources/awscc_lookoutequipment_inference_scheduler/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lookoutmetrics_alert -identifier Arn -- ../../examples/resources/awscc_lookoutmetrics_alert/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lookoutmetrics_anomaly_detector -identifier Arn -- ../../examples/resources/awscc_lookoutmetrics_anomaly_detector/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_lookoutvision_project -identifier ProjectName -- ../../examples/resources/awscc_lookoutvision_project/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_m2_application -identifier ApplicationArn -- ../../examples/resources/awscc_m2_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_m2_environment -identifier EnvironmentArn -- ../../examples/resources/awscc_m2_environment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_msk_batch_scram_secret -identifier ClusterArn -- ../../examples/resources/awscc_msk_batch_scram_secret/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_msk_cluster -identifier Arn -- ../../examples/resources/awscc_msk_cluster/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_msk_cluster_policy -identifier ClusterArn -- ../../examples/resources/awscc_msk_cluster_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_msk_configuration -identifier Arn -- ../../examples/resources/awscc_msk_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_msk_replicator -identifier ReplicatorArn -- ../../examples/resources/awscc_msk_replicator/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_msk_serverless_cluster -identifier Arn -- ../../examples/resources/awscc_msk_serverless_cluster/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_msk_vpc_connection -identifier Arn -- ../../examples/resources/awscc_msk_vpc_connection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mwaa_environment -identifier Name -- ../../examples/resources/awscc_mwaa_environment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_macie_allow_list -identifier Id -- ../../examples/resources/awscc_macie_allow_list/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_macie_custom_data_identifier -identifier Id -- ../../examples/resources/awscc_macie_custom_data_identifier/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_macie_findings_filter -identifier Id -- ../../examples/resources/awscc_macie_findings_filter/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_macie_session -identifier AwsAccountId -- ../../examples/resources/awscc_macie_session/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_managedblockchain_accessor -identifier Id -- ../../examples/resources/awscc_managedblockchain_accessor/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediaconnect_bridge -identifier BridgeArn -- ../../examples/resources/awscc_mediaconnect_bridge/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediaconnect_bridge_output -identifier BridgeArn,Name -- ../../examples/resources/awscc_mediaconnect_bridge_output/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediaconnect_bridge_source -identifier BridgeArn,Name -- ../../examples/resources/awscc_mediaconnect_bridge_source/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediaconnect_flow -identifier FlowArn -- ../../examples/resources/awscc_mediaconnect_flow/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediaconnect_flow_entitlement -identifier EntitlementArn -- ../../examples/resources/awscc_mediaconnect_flow_entitlement/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediaconnect_flow_output -identifier OutputArn -- ../../examples/resources/awscc_mediaconnect_flow_output/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediaconnect_flow_source -identifier SourceArn -- ../../examples/resources/awscc_mediaconnect_flow_source/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediaconnect_flow_vpc_interface -identifier FlowArn,Name -- ../../examples/resources/awscc_mediaconnect_flow_vpc_interface/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediaconnect_gateway -identifier GatewayArn -- ../../examples/resources/awscc_mediaconnect_gateway/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_medialive_multiplex -identifier Id -- ../../examples/resources/awscc_medialive_multiplex/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_medialive_multiplexprogram -identifier ProgramName,MultiplexId -- ../../examples/resources/awscc_medialive_multiplexprogram/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediapackage_asset -identifier Id -- ../../examples/resources/awscc_mediapackage_asset/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediapackage_channel -identifier Id -- ../../examples/resources/awscc_mediapackage_channel/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediapackage_origin_endpoint -identifier Id -- ../../examples/resources/awscc_mediapackage_origin_endpoint/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediapackage_packaging_configuration -identifier Id -- ../../examples/resources/awscc_mediapackage_packaging_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediapackage_packaging_group -identifier Id -- ../../examples/resources/awscc_mediapackage_packaging_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediapackagev2_channel -identifier Arn -- ../../examples/resources/awscc_mediapackagev2_channel/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediapackagev2_channel_group -identifier Arn -- ../../examples/resources/awscc_mediapackagev2_channel_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediapackagev2_channel_policy -identifier ChannelGroupName,ChannelName -- ../../examples/resources/awscc_mediapackagev2_channel_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediapackagev2_origin_endpoint -identifier Arn -- ../../examples/resources/awscc_mediapackagev2_origin_endpoint/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediapackagev2_origin_endpoint_policy -identifier ChannelGroupName,ChannelName,OriginEndpointName -- ../../examples/resources/awscc_mediapackagev2_origin_endpoint_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediatailor_channel -identifier ChannelName -- ../../examples/resources/awscc_mediatailor_channel/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediatailor_channel_policy -identifier ChannelName -- ../../examples/resources/awscc_mediatailor_channel_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediatailor_live_source -identifier LiveSourceName,SourceLocationName -- ../../examples/resources/awscc_mediatailor_live_source/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediatailor_source_location -identifier SourceLocationName -- ../../examples/resources/awscc_mediatailor_source_location/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_mediatailor_vod_source -identifier SourceLocationName,VodSourceName -- ../../examples/resources/awscc_mediatailor_vod_source/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_memorydb_acl -identifier ACLName -- ../../examples/resources/awscc_memorydb_acl/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_memorydb_cluster -identifier ClusterName -- ../../examples/resources/awscc_memorydb_cluster/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_memorydb_parameter_group -identifier ParameterGroupName -- ../../examples/resources/awscc_memorydb_parameter_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_memorydb_subnet_group -identifier SubnetGroupName -- ../../examples/resources/awscc_memorydb_subnet_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_memorydb_user -identifier UserName -- ../../examples/resources/awscc_memorydb_user/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_neptune_db_cluster -identifier DBClusterIdentifier -- ../../examples/resources/awscc_neptune_db_cluster/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_neptunegraph_graph -identifier GraphId -- ../../examples/resources/awscc_neptunegraph_graph/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_neptunegraph_private_graph_endpoint -identifier PrivateGraphEndpointIdentifier -- ../../examples/resources/awscc_neptunegraph_private_graph_endpoint/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkfirewall_firewall -identifier FirewallArn -- ../../examples/resources/awscc_networkfirewall_firewall/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkfirewall_firewall_policy -identifier FirewallPolicyArn -- ../../examples/resources/awscc_networkfirewall_firewall_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkfirewall_logging_configuration -identifier FirewallArn -- ../../examples/resources/awscc_networkfirewall_logging_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkfirewall_rule_group -identifier RuleGroupArn -- ../../examples/resources/awscc_networkfirewall_rule_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkfirewall_tls_inspection_configuration -identifier TLSInspectionConfigurationArn -- ../../examples/resources/awscc_networkfirewall_tls_inspection_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_connect_attachment -identifier AttachmentId -- ../../examples/resources/awscc_networkmanager_connect_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_connect_peer -identifier ConnectPeerId -- ../../examples/resources/awscc_networkmanager_connect_peer/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_core_network -identifier CoreNetworkId -- ../../examples/resources/awscc_networkmanager_core_network/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_customer_gateway_association -identifier GlobalNetworkId,CustomerGatewayArn -- ../../examples/resources/awscc_networkmanager_customer_gateway_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_device -identifier GlobalNetworkId,DeviceId -- ../../examples/resources/awscc_networkmanager_device/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_global_network -identifier Id -- ../../examples/resources/awscc_networkmanager_global_network/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_link -identifier GlobalNetworkId,LinkId -- ../../examples/resources/awscc_networkmanager_link/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_link_association -identifier GlobalNetworkId,DeviceId,LinkId -- ../../examples/resources/awscc_networkmanager_link_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_site -identifier GlobalNetworkId,SiteId -- ../../examples/resources/awscc_networkmanager_site/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_site_to_site_vpn_attachment -identifier AttachmentId -- ../../examples/resources/awscc_networkmanager_site_to_site_vpn_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_transit_gateway_peering -identifier PeeringId -- ../../examples/resources/awscc_networkmanager_transit_gateway_peering/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_transit_gateway_registration -identifier GlobalNetworkId,TransitGatewayArn -- ../../examples/resources/awscc_networkmanager_transit_gateway_registration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_transit_gateway_route_table_attachment -identifier AttachmentId -- ../../examples/resources/awscc_networkmanager_transit_gateway_route_table_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_networkmanager_vpc_attachment -identifier AttachmentId -- ../../examples/resources/awscc_networkmanager_vpc_attachment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_nimblestudio_launch_profile -identifier LaunchProfileId,StudioId -- ../../examples/resources/awscc_nimblestudio_launch_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_nimblestudio_streaming_image -identifier StudioId,StreamingImageId -- ../../examples/resources/awscc_nimblestudio_streaming_image/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_nimblestudio_studio -identifier StudioId -- ../../examples/resources/awscc_nimblestudio_studio/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_nimblestudio_studio_component -identifier StudioComponentId,StudioId -- ../../examples/resources/awscc_nimblestudio_studio_component/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_osis_pipeline -identifier PipelineArn -- ../../examples/resources/awscc_osis_pipeline/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_oam_link -identifier Arn -- ../../examples/resources/awscc_oam_link/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_oam_sink -identifier Arn -- ../../examples/resources/awscc_oam_sink/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_omics_reference_store -identifier ReferenceStoreId -- ../../examples/resources/awscc_omics_reference_store/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_omics_run_group -identifier Id -- ../../examples/resources/awscc_omics_run_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_omics_sequence_store -identifier SequenceStoreId -- ../../examples/resources/awscc_omics_sequence_store/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_omics_variant_store -identifier Name -- ../../examples/resources/awscc_omics_variant_store/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_omics_workflow -identifier Id -- ../../examples/resources/awscc_omics_workflow/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_opensearchserverless_access_policy -identifier Type,Name -- ../../examples/resources/awscc_opensearchserverless_access_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_opensearchserverless_collection -identifier Id -- ../../examples/resources/awscc_opensearchserverless_collection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_opensearchserverless_lifecycle_policy -identifier Type,Name -- ../../examples/resources/awscc_opensearchserverless_lifecycle_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_opensearchserverless_security_config -identifier Id -- ../../examples/resources/awscc_opensearchserverless_security_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_opensearchserverless_security_policy -identifier Type,Name -- ../../examples/resources/awscc_opensearchserverless_security_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_opensearchserverless_vpc_endpoint -identifier Id -- ../../examples/resources/awscc_opensearchserverless_vpc_endpoint/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_opensearchservice_domain -identifier DomainName -- ../../examples/resources/awscc_opensearchservice_domain/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_opsworkscm_server -identifier ServerName -- ../../examples/resources/awscc_opsworkscm_server/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_organizations_account -identifier AccountId -- ../../examples/resources/awscc_organizations_account/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_organizations_organization -identifier Id -- ../../examples/resources/awscc_organizations_organization/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_organizations_organizational_unit -identifier Id -- ../../examples/resources/awscc_organizations_organizational_unit/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_organizations_policy -identifier Id -- ../../examples/resources/awscc_organizations_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_organizations_resource_policy -identifier Id -- ../../examples/resources/awscc_organizations_resource_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_pcaconnectorad_connector -identifier ConnectorArn -- ../../examples/resources/awscc_pcaconnectorad_connector/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_pcaconnectorad_directory_registration -identifier DirectoryRegistrationArn -- ../../examples/resources/awscc_pcaconnectorad_directory_registration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_pcaconnectorad_service_principal_name -identifier ConnectorArn,DirectoryRegistrationArn -- ../../examples/resources/awscc_pcaconnectorad_service_principal_name/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_pcaconnectorad_template -identifier TemplateArn -- ../../examples/resources/awscc_pcaconnectorad_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_pcaconnectorad_template_group_access_control_entry -identifier GroupSecurityIdentifier,TemplateArn -- ../../examples/resources/awscc_pcaconnectorad_template_group_access_control_entry/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_panorama_application_instance -identifier ApplicationInstanceId -- ../../examples/resources/awscc_panorama_application_instance/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_panorama_package -identifier PackageId -- ../../examples/resources/awscc_panorama_package/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_panorama_package_version -identifier PackageId,PackageVersion,PatchVersion -- ../../examples/resources/awscc_panorama_package_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_paymentcryptography_alias -identifier AliasName -- ../../examples/resources/awscc_paymentcryptography_alias/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_paymentcryptography_key -identifier KeyIdentifier -- ../../examples/resources/awscc_paymentcryptography_key/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_personalize_dataset -identifier DatasetArn -- ../../examples/resources/awscc_personalize_dataset/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_personalize_dataset_group -identifier DatasetGroupArn -- ../../examples/resources/awscc_personalize_dataset_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_personalize_schema -identifier SchemaArn -- ../../examples/resources/awscc_personalize_schema/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_personalize_solution -identifier SolutionArn -- ../../examples/resources/awscc_personalize_solution/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_pinpoint_in_app_template -identifier TemplateName -- ../../examples/resources/awscc_pinpoint_in_app_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_pipes_pipe -identifier Name -- ../../examples/resources/awscc_pipes_pipe/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_proton_environment_account_connection -identifier Arn -- ../../examples/resources/awscc_proton_environment_account_connection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_proton_environment_template -identifier Arn -- ../../examples/resources/awscc_proton_environment_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_proton_service_template -identifier Arn -- ../../examples/resources/awscc_proton_service_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_qbusiness_application -identifier ApplicationId -- ../../examples/resources/awscc_qbusiness_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_qbusiness_data_source -identifier ApplicationId,DataSourceId,IndexId -- ../../examples/resources/awscc_qbusiness_data_source/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_qbusiness_index -identifier ApplicationId,IndexId -- ../../examples/resources/awscc_qbusiness_index/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_qbusiness_plugin -identifier ApplicationId,PluginId -- ../../examples/resources/awscc_qbusiness_plugin/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_qbusiness_retriever -identifier ApplicationId,RetrieverId -- ../../examples/resources/awscc_qbusiness_retriever/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_qbusiness_web_experience -identifier ApplicationId,WebExperienceId -- ../../examples/resources/awscc_qbusiness_web_experience/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_qldb_stream -identifier LedgerName,Id -- ../../examples/resources/awscc_qldb_stream/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_quicksight_analysis -identifier AnalysisId,AwsAccountId -- ../../examples/resources/awscc_quicksight_analysis/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_quicksight_dashboard -identifier AwsAccountId,DashboardId -- ../../examples/resources/awscc_quicksight_dashboard/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_quicksight_data_set -identifier AwsAccountId,DataSetId -- ../../examples/resources/awscc_quicksight_data_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_quicksight_data_source -identifier AwsAccountId,DataSourceId -- ../../examples/resources/awscc_quicksight_data_source/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_quicksight_refresh_schedule -identifier AwsAccountId,DataSetId,Schedule/ScheduleId -- ../../examples/resources/awscc_quicksight_refresh_schedule/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_quicksight_template -identifier AwsAccountId,TemplateId -- ../../examples/resources/awscc_quicksight_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_quicksight_theme -identifier ThemeId,AwsAccountId -- ../../examples/resources/awscc_quicksight_theme/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_quicksight_topic -identifier AwsAccountId,TopicId -- ../../examples/resources/awscc_quicksight_topic/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_quicksight_vpc_connection -identifier AwsAccountId,VPCConnectionId -- ../../examples/resources/awscc_quicksight_vpc_connection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ram_permission -identifier Arn -- ../../examples/resources/awscc_ram_permission/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rds_custom_db_engine_version -identifier Engine,EngineVersion -- ../../examples/resources/awscc_rds_custom_db_engine_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rds_db_cluster -identifier DBClusterIdentifier -- ../../examples/resources/awscc_rds_db_cluster/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rds_db_cluster_parameter_group -identifier DBClusterParameterGroupName -- ../../examples/resources/awscc_rds_db_cluster_parameter_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rds_db_instance -identifier DBInstanceIdentifier -- ../../examples/resources/awscc_rds_db_instance/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rds_db_parameter_group -identifier DBParameterGroupName -- ../../examples/resources/awscc_rds_db_parameter_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rds_db_proxy -identifier DBProxyName -- ../../examples/resources/awscc_rds_db_proxy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rds_db_proxy_endpoint -identifier DBProxyEndpointName -- ../../examples/resources/awscc_rds_db_proxy_endpoint/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rds_db_proxy_target_group -identifier TargetGroupArn -- ../../examples/resources/awscc_rds_db_proxy_target_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rds_db_subnet_group -identifier DBSubnetGroupName -- ../../examples/resources/awscc_rds_db_subnet_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rds_event_subscription -identifier SubscriptionName -- ../../examples/resources/awscc_rds_event_subscription/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rds_global_cluster -identifier GlobalClusterIdentifier -- ../../examples/resources/awscc_rds_global_cluster/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rds_integration -identifier IntegrationArn -- ../../examples/resources/awscc_rds_integration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rds_option_group -identifier OptionGroupName -- ../../examples/resources/awscc_rds_option_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rum_app_monitor -identifier Name -- ../../examples/resources/awscc_rum_app_monitor/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_redshift_cluster -identifier ClusterIdentifier -- ../../examples/resources/awscc_redshift_cluster/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_redshift_cluster_parameter_group -identifier ParameterGroupName -- ../../examples/resources/awscc_redshift_cluster_parameter_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_redshift_cluster_subnet_group -identifier ClusterSubnetGroupName -- ../../examples/resources/awscc_redshift_cluster_subnet_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_redshift_endpoint_access -identifier EndpointName -- ../../examples/resources/awscc_redshift_endpoint_access/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_redshift_endpoint_authorization -identifier ClusterIdentifier,Account -- ../../examples/resources/awscc_redshift_endpoint_authorization/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_redshift_event_subscription -identifier SubscriptionName -- ../../examples/resources/awscc_redshift_event_subscription/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_redshift_scheduled_action -identifier ScheduledActionName -- ../../examples/resources/awscc_redshift_scheduled_action/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_redshiftserverless_namespace -identifier NamespaceName -- ../../examples/resources/awscc_redshiftserverless_namespace/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_redshiftserverless_workgroup -identifier WorkgroupName -- ../../examples/resources/awscc_redshiftserverless_workgroup/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_refactorspaces_application -identifier EnvironmentIdentifier,ApplicationIdentifier -- ../../examples/resources/awscc_refactorspaces_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_refactorspaces_environment -identifier EnvironmentIdentifier -- ../../examples/resources/awscc_refactorspaces_environment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_refactorspaces_route -identifier EnvironmentIdentifier,ApplicationIdentifier,RouteIdentifier -- ../../examples/resources/awscc_refactorspaces_route/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_refactorspaces_service -identifier EnvironmentIdentifier,ApplicationIdentifier,ServiceIdentifier -- ../../examples/resources/awscc_refactorspaces_service/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rekognition_collection -identifier CollectionId -- ../../examples/resources/awscc_rekognition_collection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rekognition_project -identifier ProjectName -- ../../examples/resources/awscc_rekognition_project/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_resiliencehub_app -identifier AppArn -- ../../examples/resources/awscc_resiliencehub_app/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_resiliencehub_resiliency_policy -identifier PolicyArn -- ../../examples/resources/awscc_resiliencehub_resiliency_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_resourceexplorer2_default_view_association -identifier AssociatedAwsPrincipal -- ../../examples/resources/awscc_resourceexplorer2_default_view_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_resourceexplorer2_index -identifier Arn -- ../../examples/resources/awscc_resourceexplorer2_index/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_resourceexplorer2_view -identifier ViewArn -- ../../examples/resources/awscc_resourceexplorer2_view/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_resourcegroups_group -identifier Name -- ../../examples/resources/awscc_resourcegroups_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_robomaker_fleet -identifier Arn -- ../../examples/resources/awscc_robomaker_fleet/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_robomaker_robot -identifier Arn -- ../../examples/resources/awscc_robomaker_robot/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_robomaker_robot_application -identifier Arn -- ../../examples/resources/awscc_robomaker_robot_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_robomaker_robot_application_version -identifier Arn -- ../../examples/resources/awscc_robomaker_robot_application_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_robomaker_simulation_application -identifier Arn -- ../../examples/resources/awscc_robomaker_simulation_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_robomaker_simulation_application_version -identifier Arn -- ../../examples/resources/awscc_robomaker_simulation_application_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rolesanywhere_crl -identifier CrlId -- ../../examples/resources/awscc_rolesanywhere_crl/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rolesanywhere_profile -identifier ProfileId -- ../../examples/resources/awscc_rolesanywhere_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_rolesanywhere_trust_anchor -identifier TrustAnchorId -- ../../examples/resources/awscc_rolesanywhere_trust_anchor/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53_cidr_collection -identifier Id -- ../../examples/resources/awscc_route53_cidr_collection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53_dnssec -identifier HostedZoneId -- ../../examples/resources/awscc_route53_dnssec/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53_health_check -identifier HealthCheckId -- ../../examples/resources/awscc_route53_health_check/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53_hosted_zone -identifier Id -- ../../examples/resources/awscc_route53_hosted_zone/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53_key_signing_key -identifier HostedZoneId,Name -- ../../examples/resources/awscc_route53_key_signing_key/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53profiles_profile -identifier Id -- ../../examples/resources/awscc_route53profiles_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53profiles_profile_association -identifier Id -- ../../examples/resources/awscc_route53profiles_profile_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53profiles_profile_resource_association -identifier Id -- ../../examples/resources/awscc_route53profiles_profile_resource_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53recoverycontrol_cluster -identifier ClusterArn -- ../../examples/resources/awscc_route53recoverycontrol_cluster/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53recoverycontrol_control_panel -identifier ControlPanelArn -- ../../examples/resources/awscc_route53recoverycontrol_control_panel/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53recoverycontrol_routing_control -identifier RoutingControlArn -- ../../examples/resources/awscc_route53recoverycontrol_routing_control/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53recoverycontrol_safety_rule -identifier SafetyRuleArn -- ../../examples/resources/awscc_route53recoverycontrol_safety_rule/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53recoveryreadiness_cell -identifier CellName -- ../../examples/resources/awscc_route53recoveryreadiness_cell/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53recoveryreadiness_readiness_check -identifier ReadinessCheckName -- ../../examples/resources/awscc_route53recoveryreadiness_readiness_check/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53recoveryreadiness_recovery_group -identifier RecoveryGroupName -- ../../examples/resources/awscc_route53recoveryreadiness_recovery_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53recoveryreadiness_resource_set -identifier ResourceSetName -- ../../examples/resources/awscc_route53recoveryreadiness_resource_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53resolver_firewall_domain_list -identifier Id -- ../../examples/resources/awscc_route53resolver_firewall_domain_list/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53resolver_firewall_rule_group -identifier Id -- ../../examples/resources/awscc_route53resolver_firewall_rule_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53resolver_firewall_rule_group_association -identifier Id -- ../../examples/resources/awscc_route53resolver_firewall_rule_group_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53resolver_outpost_resolver -identifier Id -- ../../examples/resources/awscc_route53resolver_outpost_resolver/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53resolver_resolver_config -identifier ResourceId -- ../../examples/resources/awscc_route53resolver_resolver_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53resolver_resolver_dnssec_config -identifier Id -- ../../examples/resources/awscc_route53resolver_resolver_dnssec_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53resolver_resolver_query_logging_config -identifier Id -- ../../examples/resources/awscc_route53resolver_resolver_query_logging_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53resolver_resolver_query_logging_config_association -identifier Id -- ../../examples/resources/awscc_route53resolver_resolver_query_logging_config_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53resolver_resolver_rule -identifier ResolverRuleId -- ../../examples/resources/awscc_route53resolver_resolver_rule/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_route53resolver_resolver_rule_association -identifier ResolverRuleAssociationId -- ../../examples/resources/awscc_route53resolver_resolver_rule_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3_access_grant -identifier AccessGrantId -- ../../examples/resources/awscc_s3_access_grant/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3_access_grants_instance -identifier AccessGrantsInstanceArn -- ../../examples/resources/awscc_s3_access_grants_instance/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3_access_grants_location -identifier AccessGrantsLocationId -- ../../examples/resources/awscc_s3_access_grants_location/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3_access_point -identifier Name -- ../../examples/resources/awscc_s3_access_point/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3_bucket -identifier BucketName -- ../../examples/resources/awscc_s3_bucket/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3_bucket_policy -identifier Bucket -- ../../examples/resources/awscc_s3_bucket_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3_multi_region_access_point -identifier Name -- ../../examples/resources/awscc_s3_multi_region_access_point/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3_multi_region_access_point_policy -identifier MrapName -- ../../examples/resources/awscc_s3_multi_region_access_point_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3_storage_lens -identifier StorageLensConfiguration/Id -- ../../examples/resources/awscc_s3_storage_lens/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3_storage_lens_group -identifier Name -- ../../examples/resources/awscc_s3_storage_lens_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3express_bucket_policy -identifier Bucket -- ../../examples/resources/awscc_s3express_bucket_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3express_directory_bucket -identifier BucketName -- ../../examples/resources/awscc_s3express_directory_bucket/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3objectlambda_access_point -identifier Name -- ../../examples/resources/awscc_s3objectlambda_access_point/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3objectlambda_access_point_policy -identifier ObjectLambdaAccessPoint -- ../../examples/resources/awscc_s3objectlambda_access_point_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3outposts_access_point -identifier Arn -- ../../examples/resources/awscc_s3outposts_access_point/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3outposts_bucket -identifier Arn -- ../../examples/resources/awscc_s3outposts_bucket/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3outposts_bucket_policy -identifier Bucket -- ../../examples/resources/awscc_s3outposts_bucket_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_s3outposts_endpoint -identifier Arn -- ../../examples/resources/awscc_s3outposts_endpoint/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_configuration_set -identifier Name -- ../../examples/resources/awscc_ses_configuration_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_configuration_set_event_destination -identifier Id -- ../../examples/resources/awscc_ses_configuration_set_event_destination/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_contact_list -identifier ContactListName -- ../../examples/resources/awscc_ses_contact_list/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_dedicated_ip_pool -identifier PoolName -- ../../examples/resources/awscc_ses_dedicated_ip_pool/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_email_identity -identifier EmailIdentity -- ../../examples/resources/awscc_ses_email_identity/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_mail_manager_addon_instance -identifier AddonInstanceId -- ../../examples/resources/awscc_ses_mail_manager_addon_instance/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_mail_manager_addon_subscription -identifier AddonSubscriptionId -- ../../examples/resources/awscc_ses_mail_manager_addon_subscription/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_mail_manager_archive -identifier ArchiveId -- ../../examples/resources/awscc_ses_mail_manager_archive/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_mail_manager_ingress_point -identifier IngressPointId -- ../../examples/resources/awscc_ses_mail_manager_ingress_point/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_mail_manager_relay -identifier RelayId -- ../../examples/resources/awscc_ses_mail_manager_relay/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_mail_manager_rule_set -identifier RuleSetId -- ../../examples/resources/awscc_ses_mail_manager_rule_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_mail_manager_traffic_policy -identifier TrafficPolicyId -- ../../examples/resources/awscc_ses_mail_manager_traffic_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_template -identifier Id -- ../../examples/resources/awscc_ses_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ses_vdm_attributes -identifier VdmAttributesResourceId -- ../../examples/resources/awscc_ses_vdm_attributes/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sns_topic -identifier TopicArn -- ../../examples/resources/awscc_sns_topic/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sns_topic_inline_policy -identifier TopicArn -- ../../examples/resources/awscc_sns_topic_inline_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sqs_queue -identifier QueueUrl -- ../../examples/resources/awscc_sqs_queue/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sqs_queue_inline_policy -identifier Queue -- ../../examples/resources/awscc_sqs_queue_inline_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ssm_association -identifier AssociationId -- ../../examples/resources/awscc_ssm_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ssm_document -identifier Name -- ../../examples/resources/awscc_ssm_document/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ssm_parameter -identifier Name -- ../../examples/resources/awscc_ssm_parameter/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ssm_patch_baseline -identifier Id -- ../../examples/resources/awscc_ssm_patch_baseline/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ssm_resource_data_sync -identifier SyncName -- ../../examples/resources/awscc_ssm_resource_data_sync/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ssm_resource_policy -identifier PolicyId,ResourceArn -- ../../examples/resources/awscc_ssm_resource_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ssmcontacts_contact -identifier Arn -- ../../examples/resources/awscc_ssmcontacts_contact/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ssmcontacts_contact_channel -identifier Arn -- ../../examples/resources/awscc_ssmcontacts_contact_channel/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ssmcontacts_plan -identifier Arn -- ../../examples/resources/awscc_ssmcontacts_plan/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ssmcontacts_rotation -identifier Arn -- ../../examples/resources/awscc_ssmcontacts_rotation/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ssmincidents_replication_set -identifier Arn -- ../../examples/resources/awscc_ssmincidents_replication_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_ssmincidents_response_plan -identifier Arn -- ../../examples/resources/awscc_ssmincidents_response_plan/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sso_application -identifier ApplicationArn -- ../../examples/resources/awscc_sso_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sso_application_assignment -identifier ApplicationArn,PrincipalType,PrincipalId -- ../../examples/resources/awscc_sso_application_assignment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sso_assignment -identifier InstanceArn,TargetId,TargetType,PermissionSetArn,PrincipalType,PrincipalId -- ../../examples/resources/awscc_sso_assignment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sso_instance -identifier InstanceArn -- ../../examples/resources/awscc_sso_instance/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sso_instance_access_control_attribute_configuration -identifier InstanceArn -- ../../examples/resources/awscc_sso_instance_access_control_attribute_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sso_permission_set -identifier InstanceArn,PermissionSetArn -- ../../examples/resources/awscc_sso_permission_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_app -identifier AppName,AppType,DomainId,UserProfileName -- ../../examples/resources/awscc_sagemaker_app/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_app_image_config -identifier AppImageConfigName -- ../../examples/resources/awscc_sagemaker_app_image_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_data_quality_job_definition -identifier JobDefinitionArn -- ../../examples/resources/awscc_sagemaker_data_quality_job_definition/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_device -identifier Device/DeviceName -- ../../examples/resources/awscc_sagemaker_device/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_device_fleet -identifier DeviceFleetName -- ../../examples/resources/awscc_sagemaker_device_fleet/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_domain -identifier DomainId -- ../../examples/resources/awscc_sagemaker_domain/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_feature_group -identifier FeatureGroupName -- ../../examples/resources/awscc_sagemaker_feature_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_image -identifier ImageArn -- ../../examples/resources/awscc_sagemaker_image/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_image_version -identifier ImageVersionArn -- ../../examples/resources/awscc_sagemaker_image_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_inference_component -identifier InferenceComponentArn -- ../../examples/resources/awscc_sagemaker_inference_component/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_inference_experiment -identifier Name -- ../../examples/resources/awscc_sagemaker_inference_experiment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_mlflow_tracking_server -identifier TrackingServerName -- ../../examples/resources/awscc_sagemaker_mlflow_tracking_server/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_model_bias_job_definition -identifier JobDefinitionArn -- ../../examples/resources/awscc_sagemaker_model_bias_job_definition/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_model_explainability_job_definition -identifier JobDefinitionArn -- ../../examples/resources/awscc_sagemaker_model_explainability_job_definition/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_model_package -identifier ModelPackageArn -- ../../examples/resources/awscc_sagemaker_model_package/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_model_package_group -identifier ModelPackageGroupArn -- ../../examples/resources/awscc_sagemaker_model_package_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_model_quality_job_definition -identifier JobDefinitionArn -- ../../examples/resources/awscc_sagemaker_model_quality_job_definition/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_monitoring_schedule -identifier MonitoringScheduleArn -- ../../examples/resources/awscc_sagemaker_monitoring_schedule/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_pipeline -identifier PipelineName -- ../../examples/resources/awscc_sagemaker_pipeline/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_project -identifier ProjectArn -- ../../examples/resources/awscc_sagemaker_project/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_space -identifier DomainId,SpaceName -- ../../examples/resources/awscc_sagemaker_space/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_studio_lifecycle_config -identifier StudioLifecycleConfigName -- ../../examples/resources/awscc_sagemaker_studio_lifecycle_config/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_sagemaker_user_profile -identifier UserProfileName,DomainId -- ../../examples/resources/awscc_sagemaker_user_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_scheduler_schedule_group -identifier Name -- ../../examples/resources/awscc_scheduler_schedule_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_secretsmanager_resource_policy -identifier Id -- ../../examples/resources/awscc_secretsmanager_resource_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_secretsmanager_secret -identifier Id -- ../../examples/resources/awscc_secretsmanager_secret/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_securityhub_configuration_policy -identifier Arn -- ../../examples/resources/awscc_securityhub_configuration_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_securityhub_delegated_admin -identifier DelegatedAdminIdentifier -- ../../examples/resources/awscc_securityhub_delegated_admin/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_securityhub_finding_aggregator -identifier FindingAggregatorArn -- ../../examples/resources/awscc_securityhub_finding_aggregator/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_securityhub_hub -identifier ARN -- ../../examples/resources/awscc_securityhub_hub/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_securityhub_insight -identifier InsightArn -- ../../examples/resources/awscc_securityhub_insight/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_securityhub_organization_configuration -identifier OrganizationConfigurationIdentifier -- ../../examples/resources/awscc_securityhub_organization_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_securityhub_policy_association -identifier AssociationIdentifier -- ../../examples/resources/awscc_securityhub_policy_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_securityhub_product_subscription -identifier ProductSubscriptionArn -- ../../examples/resources/awscc_securityhub_product_subscription/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_securityhub_security_control -identifier SecurityControlId -- ../../examples/resources/awscc_securityhub_security_control/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_securityhub_standard -identifier StandardsSubscriptionArn -- ../../examples/resources/awscc_securityhub_standard/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_securitylake_aws_log_source -identifier SourceName,SourceVersion -- ../../examples/resources/awscc_securitylake_aws_log_source/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_securitylake_data_lake -identifier Arn -- ../../examples/resources/awscc_securitylake_data_lake/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_securitylake_subscriber_notification -identifier SubscriberArn -- ../../examples/resources/awscc_securitylake_subscriber_notification/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_servicecatalog_cloudformation_provisioned_product -identifier ProvisionedProductId -- ../../examples/resources/awscc_servicecatalog_cloudformation_provisioned_product/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_servicecatalog_service_action -identifier Id -- ../../examples/resources/awscc_servicecatalog_service_action/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_servicecatalog_service_action_association -identifier ProductId,ProvisioningArtifactId,ServiceActionId -- ../../examples/resources/awscc_servicecatalog_service_action_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_servicecatalogappregistry_application -identifier Id -- ../../examples/resources/awscc_servicecatalogappregistry_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_servicecatalogappregistry_attribute_group -identifier Id -- ../../examples/resources/awscc_servicecatalogappregistry_attribute_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_servicecatalogappregistry_attribute_group_association -identifier ApplicationArn,AttributeGroupArn -- ../../examples/resources/awscc_servicecatalogappregistry_attribute_group_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_servicecatalogappregistry_resource_association -identifier ApplicationArn,ResourceArn,ResourceType -- ../../examples/resources/awscc_servicecatalogappregistry_resource_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_shield_drt_access -identifier AccountId -- ../../examples/resources/awscc_shield_drt_access/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_shield_proactive_engagement -identifier AccountId -- ../../examples/resources/awscc_shield_proactive_engagement/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_shield_protection -identifier ProtectionArn -- ../../examples/resources/awscc_shield_protection/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_shield_protection_group -identifier ProtectionGroupArn -- ../../examples/resources/awscc_shield_protection_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_signer_profile_permission -identifier StatementId,ProfileName -- ../../examples/resources/awscc_signer_profile_permission/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_signer_signing_profile -identifier Arn -- ../../examples/resources/awscc_signer_signing_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_simspaceweaver_simulation -identifier Name -- ../../examples/resources/awscc_simspaceweaver_simulation/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_stepfunctions_activity -identifier Arn -- ../../examples/resources/awscc_stepfunctions_activity/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_stepfunctions_state_machine -identifier Arn -- ../../examples/resources/awscc_stepfunctions_state_machine/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_stepfunctions_state_machine_alias -identifier Arn -- ../../examples/resources/awscc_stepfunctions_state_machine_alias/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_stepfunctions_state_machine_version -identifier Arn -- ../../examples/resources/awscc_stepfunctions_state_machine_version/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_supportapp_account_alias -identifier AccountAliasResourceId -- ../../examples/resources/awscc_supportapp_account_alias/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_supportapp_slack_channel_configuration -identifier TeamId,ChannelId -- ../../examples/resources/awscc_supportapp_slack_channel_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_supportapp_slack_workspace_configuration -identifier TeamId -- ../../examples/resources/awscc_supportapp_slack_workspace_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_synthetics_canary -identifier Name -- ../../examples/resources/awscc_synthetics_canary/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_synthetics_group -identifier Name -- ../../examples/resources/awscc_synthetics_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_systemsmanagersap_application -identifier Arn -- ../../examples/resources/awscc_systemsmanagersap_application/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_timestream_database -identifier DatabaseName -- ../../examples/resources/awscc_timestream_database/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_timestream_influx_db_instance -identifier Id -- ../../examples/resources/awscc_timestream_influx_db_instance/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_timestream_scheduled_query -identifier Arn -- ../../examples/resources/awscc_timestream_scheduled_query/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_timestream_table -identifier DatabaseName,TableName -- ../../examples/resources/awscc_timestream_table/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_transfer_agreement -identifier AgreementId,ServerId -- ../../examples/resources/awscc_transfer_agreement/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_transfer_certificate -identifier CertificateId -- ../../examples/resources/awscc_transfer_certificate/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_transfer_connector -identifier ConnectorId -- ../../examples/resources/awscc_transfer_connector/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_transfer_profile -identifier ProfileId -- ../../examples/resources/awscc_transfer_profile/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_transfer_workflow -identifier WorkflowId -- ../../examples/resources/awscc_transfer_workflow/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_verifiedpermissions_identity_source -identifier IdentitySourceId,PolicyStoreId -- ../../examples/resources/awscc_verifiedpermissions_identity_source/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_verifiedpermissions_policy -identifier PolicyId,PolicyStoreId -- ../../examples/resources/awscc_verifiedpermissions_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_verifiedpermissions_policy_store -identifier PolicyStoreId -- ../../examples/resources/awscc_verifiedpermissions_policy_store/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_verifiedpermissions_policy_template -identifier PolicyStoreId,PolicyTemplateId -- ../../examples/resources/awscc_verifiedpermissions_policy_template/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_voiceid_domain -identifier DomainId -- ../../examples/resources/awscc_voiceid_domain/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_vpclattice_access_log_subscription -identifier Arn -- ../../examples/resources/awscc_vpclattice_access_log_subscription/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_vpclattice_auth_policy -identifier ResourceIdentifier -- ../../examples/resources/awscc_vpclattice_auth_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_vpclattice_listener -identifier Arn -- ../../examples/resources/awscc_vpclattice_listener/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_vpclattice_resource_policy -identifier ResourceArn -- ../../examples/resources/awscc_vpclattice_resource_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_vpclattice_rule -identifier Arn -- ../../examples/resources/awscc_vpclattice_rule/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_vpclattice_service -identifier Arn -- ../../examples/resources/awscc_vpclattice_service/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_vpclattice_service_network -identifier Arn -- ../../examples/resources/awscc_vpclattice_service_network/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_vpclattice_service_network_service_association -identifier Arn -- ../../examples/resources/awscc_vpclattice_service_network_service_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_vpclattice_service_network_vpc_association -identifier Arn -- ../../examples/resources/awscc_vpclattice_service_network_vpc_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_vpclattice_target_group -identifier Arn -- ../../examples/resources/awscc_vpclattice_target_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_wafv2_ip_set -identifier Name,Id,Scope -- ../../examples/resources/awscc_wafv2_ip_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_wafv2_logging_configuration -identifier ResourceArn -- ../../examples/resources/awscc_wafv2_logging_configuration/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_wafv2_regex_pattern_set -identifier Name,Id,Scope -- ../../examples/resources/awscc_wafv2_regex_pattern_set/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_wafv2_web_acl_association -identifier ResourceArn,WebACLArn -- ../../examples/resources/awscc_wafv2_web_acl_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_wisdom_assistant -identifier AssistantId -- ../../examples/resources/awscc_wisdom_assistant/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_wisdom_assistant_association -identifier AssistantAssociationId,AssistantId -- ../../examples/resources/awscc_wisdom_assistant_association/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_wisdom_knowledge_base -identifier KnowledgeBaseId -- ../../examples/resources/awscc_wisdom_knowledge_base/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_workspaces_connection_alias -identifier AliasId -- ../../examples/resources/awscc_workspaces_connection_alias/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_workspaces_workspaces_pool -identifier PoolId -- ../../examples/resources/awscc_workspaces_workspaces_pool/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_workspacesthinclient_environment -identifier Id -- ../../examples/resources/awscc_workspacesthinclient_environment/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_workspacesweb_browser_settings -identifier BrowserSettingsArn -- ../../examples/resources/awscc_workspacesweb_browser_settings/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_workspacesweb_identity_provider -identifier IdentityProviderArn -- ../../examples/resources/awscc_workspacesweb_identity_provider/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_workspacesweb_ip_access_settings -identifier IpAccessSettingsArn -- ../../examples/resources/awscc_workspacesweb_ip_access_settings/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_workspacesweb_network_settings -identifier NetworkSettingsArn -- ../../examples/resources/awscc_workspacesweb_network_settings/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_workspacesweb_portal -identifier PortalArn -- ../../examples/resources/awscc_workspacesweb_portal/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_workspacesweb_trust_store -identifier TrustStoreArn -- ../../examples/resources/awscc_workspacesweb_trust_store/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_workspacesweb_user_access_logging_settings -identifier UserAccessLoggingSettingsArn -- ../../examples/resources/awscc_workspacesweb_user_access_logging_settings/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_workspacesweb_user_settings -identifier UserSettingsArn -- ../../examples/resources/awscc_workspacesweb_user_settings/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_xray_group -identifier GroupARN -- ../../examples/resources/awscc_xray_group/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_xray_resource_policy -identifier PolicyName -- ../../examples/resources/awscc_xray_resource_policy/import.sh -//go:generate go run generators/import-examples/main.go -resource awscc_xray_sampling_rule -identifier RuleARN -- ../../examples/resources/awscc_xray_sampling_rule/import.sh - -package provider diff --git a/internal/provider/import_examples.json b/internal/provider/import_examples.json new file mode 100644 index 000000000..566727341 --- /dev/null +++ b/internal/provider/import_examples.json @@ -0,0 +1,5052 @@ +[ + { + "resource": "awscc_acmpca_certificate", + "identifier": "Arn,CertificateAuthorityArn", + "path": "../../examples/resources/awscc_acmpca_certificate/import.sh" + }, + { + "resource": "awscc_acmpca_certificate_authority", + "identifier": "Arn", + "path": "../../examples/resources/awscc_acmpca_certificate_authority/import.sh" + }, + { + "resource": "awscc_acmpca_certificate_authority_activation", + "identifier": "CertificateAuthorityArn", + "path": "../../examples/resources/awscc_acmpca_certificate_authority_activation/import.sh" + }, + { + "resource": "awscc_acmpca_permission", + "identifier": "CertificateAuthorityArn,Principal", + "path": "../../examples/resources/awscc_acmpca_permission/import.sh" + }, + { + "resource": "awscc_aps_rule_groups_namespace", + "identifier": "Arn", + "path": "../../examples/resources/awscc_aps_rule_groups_namespace/import.sh" + }, + { + "resource": "awscc_aps_scraper", + "identifier": "Arn", + "path": "../../examples/resources/awscc_aps_scraper/import.sh" + }, + { + "resource": "awscc_aps_workspace", + "identifier": "Arn", + "path": "../../examples/resources/awscc_aps_workspace/import.sh" + }, + { + "resource": "awscc_arczonalshift_autoshift_observer_notification_status", + "identifier": "AccountId,Region", + "path": "../../examples/resources/awscc_arczonalshift_autoshift_observer_notification_status/import.sh" + }, + { + "resource": "awscc_arczonalshift_zonal_autoshift_configuration", + "identifier": "ResourceIdentifier", + "path": "../../examples/resources/awscc_arczonalshift_zonal_autoshift_configuration/import.sh" + }, + { + "resource": "awscc_accessanalyzer_analyzer", + "identifier": "Arn", + "path": "../../examples/resources/awscc_accessanalyzer_analyzer/import.sh" + }, + { + "resource": "awscc_amplify_app", + "identifier": "Arn", + "path": "../../examples/resources/awscc_amplify_app/import.sh" + }, + { + "resource": "awscc_amplify_branch", + "identifier": "Arn", + "path": "../../examples/resources/awscc_amplify_branch/import.sh" + }, + { + "resource": "awscc_amplify_domain", + "identifier": "Arn", + "path": "../../examples/resources/awscc_amplify_domain/import.sh" + }, + { + "resource": "awscc_apigateway_account", + "identifier": "Id", + "path": "../../examples/resources/awscc_apigateway_account/import.sh" + }, + { + "resource": "awscc_apigateway_api_key", + "identifier": "APIKeyId", + "path": "../../examples/resources/awscc_apigateway_api_key/import.sh" + }, + { + "resource": "awscc_apigateway_authorizer", + "identifier": "RestApiId,AuthorizerId", + "path": "../../examples/resources/awscc_apigateway_authorizer/import.sh" + }, + { + "resource": "awscc_apigateway_base_path_mapping", + "identifier": "DomainName,BasePath", + "path": "../../examples/resources/awscc_apigateway_base_path_mapping/import.sh" + }, + { + "resource": "awscc_apigateway_client_certificate", + "identifier": "ClientCertificateId", + "path": "../../examples/resources/awscc_apigateway_client_certificate/import.sh" + }, + { + "resource": "awscc_apigateway_deployment", + "identifier": "DeploymentId,RestApiId", + "path": "../../examples/resources/awscc_apigateway_deployment/import.sh" + }, + { + "resource": "awscc_apigateway_documentation_part", + "identifier": "DocumentationPartId,RestApiId", + "path": "../../examples/resources/awscc_apigateway_documentation_part/import.sh" + }, + { + "resource": "awscc_apigateway_documentation_version", + "identifier": "DocumentationVersion,RestApiId", + "path": "../../examples/resources/awscc_apigateway_documentation_version/import.sh" + }, + { + "resource": "awscc_apigateway_domain_name", + "identifier": "DomainName", + "path": "../../examples/resources/awscc_apigateway_domain_name/import.sh" + }, + { + "resource": "awscc_apigateway_gateway_response", + "identifier": "Id", + "path": "../../examples/resources/awscc_apigateway_gateway_response/import.sh" + }, + { + "resource": "awscc_apigateway_method", + "identifier": "RestApiId,ResourceId,HttpMethod", + "path": "../../examples/resources/awscc_apigateway_method/import.sh" + }, + { + "resource": "awscc_apigateway_model", + "identifier": "RestApiId,Name", + "path": "../../examples/resources/awscc_apigateway_model/import.sh" + }, + { + "resource": "awscc_apigateway_request_validator", + "identifier": "RestApiId,RequestValidatorId", + "path": "../../examples/resources/awscc_apigateway_request_validator/import.sh" + }, + { + "resource": "awscc_apigateway_resource", + "identifier": "RestApiId,ResourceId", + "path": "../../examples/resources/awscc_apigateway_resource/import.sh" + }, + { + "resource": "awscc_apigateway_rest_api", + "identifier": "RestApiId", + "path": "../../examples/resources/awscc_apigateway_rest_api/import.sh" + }, + { + "resource": "awscc_apigateway_stage", + "identifier": "RestApiId,StageName", + "path": "../../examples/resources/awscc_apigateway_stage/import.sh" + }, + { + "resource": "awscc_apigateway_usage_plan", + "identifier": "Id", + "path": "../../examples/resources/awscc_apigateway_usage_plan/import.sh" + }, + { + "resource": "awscc_apigateway_usage_plan_key", + "identifier": "Id", + "path": "../../examples/resources/awscc_apigateway_usage_plan_key/import.sh" + }, + { + "resource": "awscc_apigateway_vpc_link", + "identifier": "VpcLinkId", + "path": "../../examples/resources/awscc_apigateway_vpc_link/import.sh" + }, + { + "resource": "awscc_apigatewayv2_api", + "identifier": "ApiId", + "path": "../../examples/resources/awscc_apigatewayv2_api/import.sh" + }, + { + "resource": "awscc_apigatewayv2_api_mapping", + "identifier": "ApiMappingId,DomainName", + "path": "../../examples/resources/awscc_apigatewayv2_api_mapping/import.sh" + }, + { + "resource": "awscc_apigatewayv2_authorizer", + "identifier": "AuthorizerId,ApiId", + "path": "../../examples/resources/awscc_apigatewayv2_authorizer/import.sh" + }, + { + "resource": "awscc_apigatewayv2_deployment", + "identifier": "ApiId,DeploymentId", + "path": "../../examples/resources/awscc_apigatewayv2_deployment/import.sh" + }, + { + "resource": "awscc_apigatewayv2_domain_name", + "identifier": "DomainName", + "path": "../../examples/resources/awscc_apigatewayv2_domain_name/import.sh" + }, + { + "resource": "awscc_apigatewayv2_integration_response", + "identifier": "ApiId,IntegrationId,IntegrationResponseId", + "path": "../../examples/resources/awscc_apigatewayv2_integration_response/import.sh" + }, + { + "resource": "awscc_apigatewayv2_model", + "identifier": "ApiId,ModelId", + "path": "../../examples/resources/awscc_apigatewayv2_model/import.sh" + }, + { + "resource": "awscc_apigatewayv2_route", + "identifier": "ApiId,RouteId", + "path": "../../examples/resources/awscc_apigatewayv2_route/import.sh" + }, + { + "resource": "awscc_apigatewayv2_route_response", + "identifier": "ApiId,RouteId,RouteResponseId", + "path": "../../examples/resources/awscc_apigatewayv2_route_response/import.sh" + }, + { + "resource": "awscc_apigatewayv2_vpc_link", + "identifier": "VpcLinkId", + "path": "../../examples/resources/awscc_apigatewayv2_vpc_link/import.sh" + }, + { + "resource": "awscc_appconfig_application", + "identifier": "ApplicationId", + "path": "../../examples/resources/awscc_appconfig_application/import.sh" + }, + { + "resource": "awscc_appconfig_configuration_profile", + "identifier": "ApplicationId,ConfigurationProfileId", + "path": "../../examples/resources/awscc_appconfig_configuration_profile/import.sh" + }, + { + "resource": "awscc_appconfig_environment", + "identifier": "ApplicationId,EnvironmentId", + "path": "../../examples/resources/awscc_appconfig_environment/import.sh" + }, + { + "resource": "awscc_appconfig_extension_association", + "identifier": "Id", + "path": "../../examples/resources/awscc_appconfig_extension_association/import.sh" + }, + { + "resource": "awscc_appconfig_hosted_configuration_version", + "identifier": "ApplicationId,ConfigurationProfileId,VersionNumber", + "path": "../../examples/resources/awscc_appconfig_hosted_configuration_version/import.sh" + }, + { + "resource": "awscc_appflow_connector", + "identifier": "ConnectorLabel", + "path": "../../examples/resources/awscc_appflow_connector/import.sh" + }, + { + "resource": "awscc_appflow_connector_profile", + "identifier": "ConnectorProfileName", + "path": "../../examples/resources/awscc_appflow_connector_profile/import.sh" + }, + { + "resource": "awscc_appflow_flow", + "identifier": "FlowName", + "path": "../../examples/resources/awscc_appflow_flow/import.sh" + }, + { + "resource": "awscc_appintegrations_application", + "identifier": "ApplicationArn", + "path": "../../examples/resources/awscc_appintegrations_application/import.sh" + }, + { + "resource": "awscc_appintegrations_event_integration", + "identifier": "Name", + "path": "../../examples/resources/awscc_appintegrations_event_integration/import.sh" + }, + { + "resource": "awscc_apprunner_auto_scaling_configuration", + "identifier": "AutoScalingConfigurationArn", + "path": "../../examples/resources/awscc_apprunner_auto_scaling_configuration/import.sh" + }, + { + "resource": "awscc_apprunner_observability_configuration", + "identifier": "ObservabilityConfigurationArn", + "path": "../../examples/resources/awscc_apprunner_observability_configuration/import.sh" + }, + { + "resource": "awscc_apprunner_service", + "identifier": "ServiceArn", + "path": "../../examples/resources/awscc_apprunner_service/import.sh" + }, + { + "resource": "awscc_apprunner_vpc_connector", + "identifier": "VpcConnectorArn", + "path": "../../examples/resources/awscc_apprunner_vpc_connector/import.sh" + }, + { + "resource": "awscc_apprunner_vpc_ingress_connection", + "identifier": "VpcIngressConnectionArn", + "path": "../../examples/resources/awscc_apprunner_vpc_ingress_connection/import.sh" + }, + { + "resource": "awscc_appstream_app_block", + "identifier": "Arn", + "path": "../../examples/resources/awscc_appstream_app_block/import.sh" + }, + { + "resource": "awscc_appstream_app_block_builder", + "identifier": "Name", + "path": "../../examples/resources/awscc_appstream_app_block_builder/import.sh" + }, + { + "resource": "awscc_appstream_application", + "identifier": "Arn", + "path": "../../examples/resources/awscc_appstream_application/import.sh" + }, + { + "resource": "awscc_appstream_application_entitlement_association", + "identifier": "StackName,EntitlementName,ApplicationIdentifier", + "path": "../../examples/resources/awscc_appstream_application_entitlement_association/import.sh" + }, + { + "resource": "awscc_appstream_application_fleet_association", + "identifier": "FleetName,ApplicationArn", + "path": "../../examples/resources/awscc_appstream_application_fleet_association/import.sh" + }, + { + "resource": "awscc_appstream_directory_config", + "identifier": "DirectoryName", + "path": "../../examples/resources/awscc_appstream_directory_config/import.sh" + }, + { + "resource": "awscc_appstream_entitlement", + "identifier": "StackName,Name", + "path": "../../examples/resources/awscc_appstream_entitlement/import.sh" + }, + { + "resource": "awscc_appstream_image_builder", + "identifier": "Name", + "path": "../../examples/resources/awscc_appstream_image_builder/import.sh" + }, + { + "resource": "awscc_appsync_domain_name", + "identifier": "DomainName", + "path": "../../examples/resources/awscc_appsync_domain_name/import.sh" + }, + { + "resource": "awscc_appsync_domain_name_api_association", + "identifier": "ApiAssociationIdentifier", + "path": "../../examples/resources/awscc_appsync_domain_name_api_association/import.sh" + }, + { + "resource": "awscc_appsync_function_configuration", + "identifier": "FunctionArn", + "path": "../../examples/resources/awscc_appsync_function_configuration/import.sh" + }, + { + "resource": "awscc_appsync_resolver", + "identifier": "ResolverArn", + "path": "../../examples/resources/awscc_appsync_resolver/import.sh" + }, + { + "resource": "awscc_appsync_source_api_association", + "identifier": "AssociationArn", + "path": "../../examples/resources/awscc_appsync_source_api_association/import.sh" + }, + { + "resource": "awscc_apptest_test_case", + "identifier": "TestCaseId", + "path": "../../examples/resources/awscc_apptest_test_case/import.sh" + }, + { + "resource": "awscc_applicationautoscaling_scalable_target", + "identifier": "ResourceId,ScalableDimension,ServiceNamespace", + "path": "../../examples/resources/awscc_applicationautoscaling_scalable_target/import.sh" + }, + { + "resource": "awscc_applicationautoscaling_scaling_policy", + "identifier": "Arn,ScalableDimension", + "path": "../../examples/resources/awscc_applicationautoscaling_scaling_policy/import.sh" + }, + { + "resource": "awscc_applicationinsights_application", + "identifier": "ApplicationARN", + "path": "../../examples/resources/awscc_applicationinsights_application/import.sh" + }, + { + "resource": "awscc_applicationsignals_service_level_objective", + "identifier": "Arn", + "path": "../../examples/resources/awscc_applicationsignals_service_level_objective/import.sh" + }, + { + "resource": "awscc_athena_capacity_reservation", + "identifier": "Arn", + "path": "../../examples/resources/awscc_athena_capacity_reservation/import.sh" + }, + { + "resource": "awscc_athena_data_catalog", + "identifier": "Name", + "path": "../../examples/resources/awscc_athena_data_catalog/import.sh" + }, + { + "resource": "awscc_athena_named_query", + "identifier": "NamedQueryId", + "path": "../../examples/resources/awscc_athena_named_query/import.sh" + }, + { + "resource": "awscc_athena_prepared_statement", + "identifier": "StatementName,WorkGroup", + "path": "../../examples/resources/awscc_athena_prepared_statement/import.sh" + }, + { + "resource": "awscc_athena_work_group", + "identifier": "Name", + "path": "../../examples/resources/awscc_athena_work_group/import.sh" + }, + { + "resource": "awscc_auditmanager_assessment", + "identifier": "AssessmentId", + "path": "../../examples/resources/awscc_auditmanager_assessment/import.sh" + }, + { + "resource": "awscc_autoscaling_auto_scaling_group", + "identifier": "AutoScalingGroupName", + "path": "../../examples/resources/awscc_autoscaling_auto_scaling_group/import.sh" + }, + { + "resource": "awscc_autoscaling_launch_configuration", + "identifier": "LaunchConfigurationName", + "path": "../../examples/resources/awscc_autoscaling_launch_configuration/import.sh" + }, + { + "resource": "awscc_autoscaling_lifecycle_hook", + "identifier": "AutoScalingGroupName,LifecycleHookName", + "path": "../../examples/resources/awscc_autoscaling_lifecycle_hook/import.sh" + }, + { + "resource": "awscc_autoscaling_scaling_policy", + "identifier": "Arn", + "path": "../../examples/resources/awscc_autoscaling_scaling_policy/import.sh" + }, + { + "resource": "awscc_autoscaling_scheduled_action", + "identifier": "ScheduledActionName,AutoScalingGroupName", + "path": "../../examples/resources/awscc_autoscaling_scheduled_action/import.sh" + }, + { + "resource": "awscc_autoscaling_warm_pool", + "identifier": "AutoScalingGroupName", + "path": "../../examples/resources/awscc_autoscaling_warm_pool/import.sh" + }, + { + "resource": "awscc_b2bi_capability", + "identifier": "CapabilityId", + "path": "../../examples/resources/awscc_b2bi_capability/import.sh" + }, + { + "resource": "awscc_b2bi_partnership", + "identifier": "PartnershipId", + "path": "../../examples/resources/awscc_b2bi_partnership/import.sh" + }, + { + "resource": "awscc_b2bi_profile", + "identifier": "ProfileId", + "path": "../../examples/resources/awscc_b2bi_profile/import.sh" + }, + { + "resource": "awscc_b2bi_transformer", + "identifier": "TransformerId", + "path": "../../examples/resources/awscc_b2bi_transformer/import.sh" + }, + { + "resource": "awscc_backup_backup_plan", + "identifier": "BackupPlanId", + "path": "../../examples/resources/awscc_backup_backup_plan/import.sh" + }, + { + "resource": "awscc_backup_backup_selection", + "identifier": "Id", + "path": "../../examples/resources/awscc_backup_backup_selection/import.sh" + }, + { + "resource": "awscc_backup_backup_vault", + "identifier": "BackupVaultName", + "path": "../../examples/resources/awscc_backup_backup_vault/import.sh" + }, + { + "resource": "awscc_backup_framework", + "identifier": "FrameworkArn", + "path": "../../examples/resources/awscc_backup_framework/import.sh" + }, + { + "resource": "awscc_backup_report_plan", + "identifier": "ReportPlanArn", + "path": "../../examples/resources/awscc_backup_report_plan/import.sh" + }, + { + "resource": "awscc_backup_restore_testing_plan", + "identifier": "RestoreTestingPlanName", + "path": "../../examples/resources/awscc_backup_restore_testing_plan/import.sh" + }, + { + "resource": "awscc_backup_restore_testing_selection", + "identifier": "RestoreTestingPlanName,RestoreTestingSelectionName", + "path": "../../examples/resources/awscc_backup_restore_testing_selection/import.sh" + }, + { + "resource": "awscc_backupgateway_hypervisor", + "identifier": "HypervisorArn", + "path": "../../examples/resources/awscc_backupgateway_hypervisor/import.sh" + }, + { + "resource": "awscc_batch_compute_environment", + "identifier": "ComputeEnvironmentArn", + "path": "../../examples/resources/awscc_batch_compute_environment/import.sh" + }, + { + "resource": "awscc_batch_job_queue", + "identifier": "JobQueueArn", + "path": "../../examples/resources/awscc_batch_job_queue/import.sh" + }, + { + "resource": "awscc_batch_scheduling_policy", + "identifier": "Arn", + "path": "../../examples/resources/awscc_batch_scheduling_policy/import.sh" + }, + { + "resource": "awscc_bedrock_agent", + "identifier": "AgentId", + "path": "../../examples/resources/awscc_bedrock_agent/import.sh" + }, + { + "resource": "awscc_bedrock_agent_alias", + "identifier": "AgentId,AgentAliasId", + "path": "../../examples/resources/awscc_bedrock_agent_alias/import.sh" + }, + { + "resource": "awscc_bedrock_data_source", + "identifier": "KnowledgeBaseId,DataSourceId", + "path": "../../examples/resources/awscc_bedrock_data_source/import.sh" + }, + { + "resource": "awscc_bedrock_flow_alias", + "identifier": "Arn,FlowArn", + "path": "../../examples/resources/awscc_bedrock_flow_alias/import.sh" + }, + { + "resource": "awscc_bedrock_flow_version", + "identifier": "FlowArn,Version", + "path": "../../examples/resources/awscc_bedrock_flow_version/import.sh" + }, + { + "resource": "awscc_bedrock_guardrail", + "identifier": "GuardrailArn", + "path": "../../examples/resources/awscc_bedrock_guardrail/import.sh" + }, + { + "resource": "awscc_bedrock_guardrail_version", + "identifier": "GuardrailId,Version", + "path": "../../examples/resources/awscc_bedrock_guardrail_version/import.sh" + }, + { + "resource": "awscc_bedrock_knowledge_base", + "identifier": "KnowledgeBaseId", + "path": "../../examples/resources/awscc_bedrock_knowledge_base/import.sh" + }, + { + "resource": "awscc_bedrock_prompt", + "identifier": "Arn", + "path": "../../examples/resources/awscc_bedrock_prompt/import.sh" + }, + { + "resource": "awscc_bedrock_prompt_version", + "identifier": "Arn", + "path": "../../examples/resources/awscc_bedrock_prompt_version/import.sh" + }, + { + "resource": "awscc_billingconductor_billing_group", + "identifier": "Arn", + "path": "../../examples/resources/awscc_billingconductor_billing_group/import.sh" + }, + { + "resource": "awscc_billingconductor_custom_line_item", + "identifier": "Arn", + "path": "../../examples/resources/awscc_billingconductor_custom_line_item/import.sh" + }, + { + "resource": "awscc_billingconductor_pricing_plan", + "identifier": "Arn", + "path": "../../examples/resources/awscc_billingconductor_pricing_plan/import.sh" + }, + { + "resource": "awscc_billingconductor_pricing_rule", + "identifier": "Arn", + "path": "../../examples/resources/awscc_billingconductor_pricing_rule/import.sh" + }, + { + "resource": "awscc_budgets_budgets_action", + "identifier": "ActionId,BudgetName", + "path": "../../examples/resources/awscc_budgets_budgets_action/import.sh" + }, + { + "resource": "awscc_ce_anomaly_monitor", + "identifier": "MonitorArn", + "path": "../../examples/resources/awscc_ce_anomaly_monitor/import.sh" + }, + { + "resource": "awscc_ce_anomaly_subscription", + "identifier": "SubscriptionArn", + "path": "../../examples/resources/awscc_ce_anomaly_subscription/import.sh" + }, + { + "resource": "awscc_ce_cost_category", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ce_cost_category/import.sh" + }, + { + "resource": "awscc_cur_report_definition", + "identifier": "ReportName", + "path": "../../examples/resources/awscc_cur_report_definition/import.sh" + }, + { + "resource": "awscc_cassandra_keyspace", + "identifier": "KeyspaceName", + "path": "../../examples/resources/awscc_cassandra_keyspace/import.sh" + }, + { + "resource": "awscc_cassandra_table", + "identifier": "KeyspaceName,TableName", + "path": "../../examples/resources/awscc_cassandra_table/import.sh" + }, + { + "resource": "awscc_certificatemanager_account", + "identifier": "AccountId", + "path": "../../examples/resources/awscc_certificatemanager_account/import.sh" + }, + { + "resource": "awscc_chatbot_microsoft_teams_channel_configuration", + "identifier": "Arn", + "path": "../../examples/resources/awscc_chatbot_microsoft_teams_channel_configuration/import.sh" + }, + { + "resource": "awscc_chatbot_slack_channel_configuration", + "identifier": "Arn", + "path": "../../examples/resources/awscc_chatbot_slack_channel_configuration/import.sh" + }, + { + "resource": "awscc_cleanrooms_analysis_template", + "identifier": "AnalysisTemplateIdentifier,MembershipIdentifier", + "path": "../../examples/resources/awscc_cleanrooms_analysis_template/import.sh" + }, + { + "resource": "awscc_cleanrooms_collaboration", + "identifier": "CollaborationIdentifier", + "path": "../../examples/resources/awscc_cleanrooms_collaboration/import.sh" + }, + { + "resource": "awscc_cleanrooms_configured_table", + "identifier": "ConfiguredTableIdentifier", + "path": "../../examples/resources/awscc_cleanrooms_configured_table/import.sh" + }, + { + "resource": "awscc_cleanrooms_configured_table_association", + "identifier": "ConfiguredTableAssociationIdentifier,MembershipIdentifier", + "path": "../../examples/resources/awscc_cleanrooms_configured_table_association/import.sh" + }, + { + "resource": "awscc_cleanrooms_id_mapping_table", + "identifier": "IdMappingTableIdentifier,MembershipIdentifier", + "path": "../../examples/resources/awscc_cleanrooms_id_mapping_table/import.sh" + }, + { + "resource": "awscc_cleanrooms_membership", + "identifier": "MembershipIdentifier", + "path": "../../examples/resources/awscc_cleanrooms_membership/import.sh" + }, + { + "resource": "awscc_cleanrooms_privacy_budget_template", + "identifier": "PrivacyBudgetTemplateIdentifier,MembershipIdentifier", + "path": "../../examples/resources/awscc_cleanrooms_privacy_budget_template/import.sh" + }, + { + "resource": "awscc_cleanroomsml_training_dataset", + "identifier": "TrainingDatasetArn", + "path": "../../examples/resources/awscc_cleanroomsml_training_dataset/import.sh" + }, + { + "resource": "awscc_cloudformation_hook_default_version", + "identifier": "Arn", + "path": "../../examples/resources/awscc_cloudformation_hook_default_version/import.sh" + }, + { + "resource": "awscc_cloudformation_hook_type_config", + "identifier": "ConfigurationArn", + "path": "../../examples/resources/awscc_cloudformation_hook_type_config/import.sh" + }, + { + "resource": "awscc_cloudformation_hook_version", + "identifier": "Arn", + "path": "../../examples/resources/awscc_cloudformation_hook_version/import.sh" + }, + { + "resource": "awscc_cloudformation_module_default_version", + "identifier": "Arn", + "path": "../../examples/resources/awscc_cloudformation_module_default_version/import.sh" + }, + { + "resource": "awscc_cloudformation_module_version", + "identifier": "Arn", + "path": "../../examples/resources/awscc_cloudformation_module_version/import.sh" + }, + { + "resource": "awscc_cloudformation_public_type_version", + "identifier": "PublicTypeArn", + "path": "../../examples/resources/awscc_cloudformation_public_type_version/import.sh" + }, + { + "resource": "awscc_cloudformation_publisher", + "identifier": "PublisherId", + "path": "../../examples/resources/awscc_cloudformation_publisher/import.sh" + }, + { + "resource": "awscc_cloudformation_resource_default_version", + "identifier": "Arn", + "path": "../../examples/resources/awscc_cloudformation_resource_default_version/import.sh" + }, + { + "resource": "awscc_cloudformation_resource_version", + "identifier": "Arn", + "path": "../../examples/resources/awscc_cloudformation_resource_version/import.sh" + }, + { + "resource": "awscc_cloudformation_stack", + "identifier": "StackId", + "path": "../../examples/resources/awscc_cloudformation_stack/import.sh" + }, + { + "resource": "awscc_cloudformation_stack_set", + "identifier": "StackSetId", + "path": "../../examples/resources/awscc_cloudformation_stack_set/import.sh" + }, + { + "resource": "awscc_cloudformation_type_activation", + "identifier": "Arn", + "path": "../../examples/resources/awscc_cloudformation_type_activation/import.sh" + }, + { + "resource": "awscc_cloudfront_cache_policy", + "identifier": "Id", + "path": "../../examples/resources/awscc_cloudfront_cache_policy/import.sh" + }, + { + "resource": "awscc_cloudfront_cloudfront_origin_access_identity", + "identifier": "Id", + "path": "../../examples/resources/awscc_cloudfront_cloudfront_origin_access_identity/import.sh" + }, + { + "resource": "awscc_cloudfront_continuous_deployment_policy", + "identifier": "Id", + "path": "../../examples/resources/awscc_cloudfront_continuous_deployment_policy/import.sh" + }, + { + "resource": "awscc_cloudfront_distribution", + "identifier": "Id", + "path": "../../examples/resources/awscc_cloudfront_distribution/import.sh" + }, + { + "resource": "awscc_cloudfront_function", + "identifier": "FunctionARN", + "path": "../../examples/resources/awscc_cloudfront_function/import.sh" + }, + { + "resource": "awscc_cloudfront_key_group", + "identifier": "Id", + "path": "../../examples/resources/awscc_cloudfront_key_group/import.sh" + }, + { + "resource": "awscc_cloudfront_key_value_store", + "identifier": "Name", + "path": "../../examples/resources/awscc_cloudfront_key_value_store/import.sh" + }, + { + "resource": "awscc_cloudfront_monitoring_subscription", + "identifier": "DistributionId", + "path": "../../examples/resources/awscc_cloudfront_monitoring_subscription/import.sh" + }, + { + "resource": "awscc_cloudfront_origin_access_control", + "identifier": "Id", + "path": "../../examples/resources/awscc_cloudfront_origin_access_control/import.sh" + }, + { + "resource": "awscc_cloudfront_origin_request_policy", + "identifier": "Id", + "path": "../../examples/resources/awscc_cloudfront_origin_request_policy/import.sh" + }, + { + "resource": "awscc_cloudfront_public_key", + "identifier": "Id", + "path": "../../examples/resources/awscc_cloudfront_public_key/import.sh" + }, + { + "resource": "awscc_cloudfront_realtime_log_config", + "identifier": "Arn", + "path": "../../examples/resources/awscc_cloudfront_realtime_log_config/import.sh" + }, + { + "resource": "awscc_cloudfront_response_headers_policy", + "identifier": "Id", + "path": "../../examples/resources/awscc_cloudfront_response_headers_policy/import.sh" + }, + { + "resource": "awscc_cloudtrail_channel", + "identifier": "ChannelArn", + "path": "../../examples/resources/awscc_cloudtrail_channel/import.sh" + }, + { + "resource": "awscc_cloudtrail_event_data_store", + "identifier": "EventDataStoreArn", + "path": "../../examples/resources/awscc_cloudtrail_event_data_store/import.sh" + }, + { + "resource": "awscc_cloudtrail_resource_policy", + "identifier": "ResourceArn", + "path": "../../examples/resources/awscc_cloudtrail_resource_policy/import.sh" + }, + { + "resource": "awscc_cloudtrail_trail", + "identifier": "TrailName", + "path": "../../examples/resources/awscc_cloudtrail_trail/import.sh" + }, + { + "resource": "awscc_cloudwatch_alarm", + "identifier": "AlarmName", + "path": "../../examples/resources/awscc_cloudwatch_alarm/import.sh" + }, + { + "resource": "awscc_cloudwatch_composite_alarm", + "identifier": "AlarmName", + "path": "../../examples/resources/awscc_cloudwatch_composite_alarm/import.sh" + }, + { + "resource": "awscc_cloudwatch_dashboard", + "identifier": "DashboardName", + "path": "../../examples/resources/awscc_cloudwatch_dashboard/import.sh" + }, + { + "resource": "awscc_cloudwatch_metric_stream", + "identifier": "Name", + "path": "../../examples/resources/awscc_cloudwatch_metric_stream/import.sh" + }, + { + "resource": "awscc_codeartifact_domain", + "identifier": "Arn", + "path": "../../examples/resources/awscc_codeartifact_domain/import.sh" + }, + { + "resource": "awscc_codeartifact_package_group", + "identifier": "Arn", + "path": "../../examples/resources/awscc_codeartifact_package_group/import.sh" + }, + { + "resource": "awscc_codeartifact_repository", + "identifier": "Arn", + "path": "../../examples/resources/awscc_codeartifact_repository/import.sh" + }, + { + "resource": "awscc_codebuild_fleet", + "identifier": "Arn", + "path": "../../examples/resources/awscc_codebuild_fleet/import.sh" + }, + { + "resource": "awscc_codeconnections_connection", + "identifier": "ConnectionArn", + "path": "../../examples/resources/awscc_codeconnections_connection/import.sh" + }, + { + "resource": "awscc_codedeploy_application", + "identifier": "ApplicationName", + "path": "../../examples/resources/awscc_codedeploy_application/import.sh" + }, + { + "resource": "awscc_codedeploy_deployment_config", + "identifier": "DeploymentConfigName", + "path": "../../examples/resources/awscc_codedeploy_deployment_config/import.sh" + }, + { + "resource": "awscc_codeguruprofiler_profiling_group", + "identifier": "ProfilingGroupName", + "path": "../../examples/resources/awscc_codeguruprofiler_profiling_group/import.sh" + }, + { + "resource": "awscc_codegurureviewer_repository_association", + "identifier": "AssociationArn", + "path": "../../examples/resources/awscc_codegurureviewer_repository_association/import.sh" + }, + { + "resource": "awscc_codepipeline_custom_action_type", + "identifier": "Category,Provider,Version", + "path": "../../examples/resources/awscc_codepipeline_custom_action_type/import.sh" + }, + { + "resource": "awscc_codepipeline_pipeline", + "identifier": "Name", + "path": "../../examples/resources/awscc_codepipeline_pipeline/import.sh" + }, + { + "resource": "awscc_codestarconnections_connection", + "identifier": "ConnectionArn", + "path": "../../examples/resources/awscc_codestarconnections_connection/import.sh" + }, + { + "resource": "awscc_codestarconnections_repository_link", + "identifier": "RepositoryLinkArn", + "path": "../../examples/resources/awscc_codestarconnections_repository_link/import.sh" + }, + { + "resource": "awscc_codestarconnections_sync_configuration", + "identifier": "ResourceName,SyncType", + "path": "../../examples/resources/awscc_codestarconnections_sync_configuration/import.sh" + }, + { + "resource": "awscc_codestarnotifications_notification_rule", + "identifier": "Arn", + "path": "../../examples/resources/awscc_codestarnotifications_notification_rule/import.sh" + }, + { + "resource": "awscc_cognito_identity_pool", + "identifier": "Id", + "path": "../../examples/resources/awscc_cognito_identity_pool/import.sh" + }, + { + "resource": "awscc_cognito_identity_pool_principal_tag", + "identifier": "IdentityPoolId,IdentityProviderName", + "path": "../../examples/resources/awscc_cognito_identity_pool_principal_tag/import.sh" + }, + { + "resource": "awscc_cognito_identity_pool_role_attachment", + "identifier": "Id", + "path": "../../examples/resources/awscc_cognito_identity_pool_role_attachment/import.sh" + }, + { + "resource": "awscc_cognito_log_delivery_configuration", + "identifier": "Id", + "path": "../../examples/resources/awscc_cognito_log_delivery_configuration/import.sh" + }, + { + "resource": "awscc_cognito_user_pool_client", + "identifier": "UserPoolId,ClientId", + "path": "../../examples/resources/awscc_cognito_user_pool_client/import.sh" + }, + { + "resource": "awscc_cognito_user_pool_group", + "identifier": "UserPoolId,GroupName", + "path": "../../examples/resources/awscc_cognito_user_pool_group/import.sh" + }, + { + "resource": "awscc_cognito_user_pool_resource_server", + "identifier": "UserPoolId,Identifier", + "path": "../../examples/resources/awscc_cognito_user_pool_resource_server/import.sh" + }, + { + "resource": "awscc_cognito_user_pool_risk_configuration_attachment", + "identifier": "UserPoolId,ClientId", + "path": "../../examples/resources/awscc_cognito_user_pool_risk_configuration_attachment/import.sh" + }, + { + "resource": "awscc_cognito_user_pool_ui_customization_attachment", + "identifier": "UserPoolId,ClientId", + "path": "../../examples/resources/awscc_cognito_user_pool_ui_customization_attachment/import.sh" + }, + { + "resource": "awscc_cognito_user_pool_user", + "identifier": "UserPoolId,Username", + "path": "../../examples/resources/awscc_cognito_user_pool_user/import.sh" + }, + { + "resource": "awscc_cognito_user_pool_user_to_group_attachment", + "identifier": "UserPoolId,GroupName,Username", + "path": "../../examples/resources/awscc_cognito_user_pool_user_to_group_attachment/import.sh" + }, + { + "resource": "awscc_comprehend_document_classifier", + "identifier": "Arn", + "path": "../../examples/resources/awscc_comprehend_document_classifier/import.sh" + }, + { + "resource": "awscc_comprehend_flywheel", + "identifier": "Arn", + "path": "../../examples/resources/awscc_comprehend_flywheel/import.sh" + }, + { + "resource": "awscc_config_aggregation_authorization", + "identifier": "AuthorizedAccountId,AuthorizedAwsRegion", + "path": "../../examples/resources/awscc_config_aggregation_authorization/import.sh" + }, + { + "resource": "awscc_config_config_rule", + "identifier": "ConfigRuleName", + "path": "../../examples/resources/awscc_config_config_rule/import.sh" + }, + { + "resource": "awscc_config_configuration_aggregator", + "identifier": "ConfigurationAggregatorName", + "path": "../../examples/resources/awscc_config_configuration_aggregator/import.sh" + }, + { + "resource": "awscc_config_conformance_pack", + "identifier": "ConformancePackName", + "path": "../../examples/resources/awscc_config_conformance_pack/import.sh" + }, + { + "resource": "awscc_config_organization_conformance_pack", + "identifier": "OrganizationConformancePackName", + "path": "../../examples/resources/awscc_config_organization_conformance_pack/import.sh" + }, + { + "resource": "awscc_config_stored_query", + "identifier": "QueryName", + "path": "../../examples/resources/awscc_config_stored_query/import.sh" + }, + { + "resource": "awscc_connect_approved_origin", + "identifier": "InstanceId,Origin", + "path": "../../examples/resources/awscc_connect_approved_origin/import.sh" + }, + { + "resource": "awscc_connect_contact_flow", + "identifier": "ContactFlowArn", + "path": "../../examples/resources/awscc_connect_contact_flow/import.sh" + }, + { + "resource": "awscc_connect_contact_flow_module", + "identifier": "ContactFlowModuleArn", + "path": "../../examples/resources/awscc_connect_contact_flow_module/import.sh" + }, + { + "resource": "awscc_connect_hours_of_operation", + "identifier": "HoursOfOperationArn", + "path": "../../examples/resources/awscc_connect_hours_of_operation/import.sh" + }, + { + "resource": "awscc_connect_instance", + "identifier": "Arn", + "path": "../../examples/resources/awscc_connect_instance/import.sh" + }, + { + "resource": "awscc_connect_instance_storage_config", + "identifier": "InstanceArn,AssociationId,ResourceType", + "path": "../../examples/resources/awscc_connect_instance_storage_config/import.sh" + }, + { + "resource": "awscc_connect_integration_association", + "identifier": "InstanceId,IntegrationType,IntegrationArn", + "path": "../../examples/resources/awscc_connect_integration_association/import.sh" + }, + { + "resource": "awscc_connect_phone_number", + "identifier": "PhoneNumberArn", + "path": "../../examples/resources/awscc_connect_phone_number/import.sh" + }, + { + "resource": "awscc_connect_predefined_attribute", + "identifier": "InstanceArn,Name", + "path": "../../examples/resources/awscc_connect_predefined_attribute/import.sh" + }, + { + "resource": "awscc_connect_prompt", + "identifier": "PromptArn", + "path": "../../examples/resources/awscc_connect_prompt/import.sh" + }, + { + "resource": "awscc_connect_queue", + "identifier": "QueueArn", + "path": "../../examples/resources/awscc_connect_queue/import.sh" + }, + { + "resource": "awscc_connect_quick_connect", + "identifier": "QuickConnectArn", + "path": "../../examples/resources/awscc_connect_quick_connect/import.sh" + }, + { + "resource": "awscc_connect_routing_profile", + "identifier": "RoutingProfileArn", + "path": "../../examples/resources/awscc_connect_routing_profile/import.sh" + }, + { + "resource": "awscc_connect_security_key", + "identifier": "InstanceId,AssociationId", + "path": "../../examples/resources/awscc_connect_security_key/import.sh" + }, + { + "resource": "awscc_connect_security_profile", + "identifier": "SecurityProfileArn", + "path": "../../examples/resources/awscc_connect_security_profile/import.sh" + }, + { + "resource": "awscc_connect_task_template", + "identifier": "Arn", + "path": "../../examples/resources/awscc_connect_task_template/import.sh" + }, + { + "resource": "awscc_connect_traffic_distribution_group", + "identifier": "TrafficDistributionGroupArn", + "path": "../../examples/resources/awscc_connect_traffic_distribution_group/import.sh" + }, + { + "resource": "awscc_connect_user", + "identifier": "UserArn", + "path": "../../examples/resources/awscc_connect_user/import.sh" + }, + { + "resource": "awscc_connect_user_hierarchy_group", + "identifier": "UserHierarchyGroupArn", + "path": "../../examples/resources/awscc_connect_user_hierarchy_group/import.sh" + }, + { + "resource": "awscc_connect_view", + "identifier": "ViewArn", + "path": "../../examples/resources/awscc_connect_view/import.sh" + }, + { + "resource": "awscc_connect_view_version", + "identifier": "ViewVersionArn", + "path": "../../examples/resources/awscc_connect_view_version/import.sh" + }, + { + "resource": "awscc_connectcampaigns_campaign", + "identifier": "Arn", + "path": "../../examples/resources/awscc_connectcampaigns_campaign/import.sh" + }, + { + "resource": "awscc_controltower_enabled_control", + "identifier": "TargetIdentifier,ControlIdentifier", + "path": "../../examples/resources/awscc_controltower_enabled_control/import.sh" + }, + { + "resource": "awscc_customerprofiles_calculated_attribute_definition", + "identifier": "DomainName,CalculatedAttributeName", + "path": "../../examples/resources/awscc_customerprofiles_calculated_attribute_definition/import.sh" + }, + { + "resource": "awscc_customerprofiles_domain", + "identifier": "DomainName", + "path": "../../examples/resources/awscc_customerprofiles_domain/import.sh" + }, + { + "resource": "awscc_customerprofiles_event_stream", + "identifier": "DomainName,EventStreamName", + "path": "../../examples/resources/awscc_customerprofiles_event_stream/import.sh" + }, + { + "resource": "awscc_customerprofiles_integration", + "identifier": "DomainName,Uri", + "path": "../../examples/resources/awscc_customerprofiles_integration/import.sh" + }, + { + "resource": "awscc_customerprofiles_object_type", + "identifier": "DomainName,ObjectTypeName", + "path": "../../examples/resources/awscc_customerprofiles_object_type/import.sh" + }, + { + "resource": "awscc_dms_data_provider", + "identifier": "DataProviderArn", + "path": "../../examples/resources/awscc_dms_data_provider/import.sh" + }, + { + "resource": "awscc_dms_instance_profile", + "identifier": "InstanceProfileArn", + "path": "../../examples/resources/awscc_dms_instance_profile/import.sh" + }, + { + "resource": "awscc_dms_migration_project", + "identifier": "MigrationProjectArn", + "path": "../../examples/resources/awscc_dms_migration_project/import.sh" + }, + { + "resource": "awscc_dms_replication_config", + "identifier": "ReplicationConfigArn", + "path": "../../examples/resources/awscc_dms_replication_config/import.sh" + }, + { + "resource": "awscc_databrew_dataset", + "identifier": "Name", + "path": "../../examples/resources/awscc_databrew_dataset/import.sh" + }, + { + "resource": "awscc_databrew_job", + "identifier": "Name", + "path": "../../examples/resources/awscc_databrew_job/import.sh" + }, + { + "resource": "awscc_databrew_project", + "identifier": "Name", + "path": "../../examples/resources/awscc_databrew_project/import.sh" + }, + { + "resource": "awscc_databrew_ruleset", + "identifier": "Name", + "path": "../../examples/resources/awscc_databrew_ruleset/import.sh" + }, + { + "resource": "awscc_databrew_schedule", + "identifier": "Name", + "path": "../../examples/resources/awscc_databrew_schedule/import.sh" + }, + { + "resource": "awscc_datapipeline_pipeline", + "identifier": "PipelineId", + "path": "../../examples/resources/awscc_datapipeline_pipeline/import.sh" + }, + { + "resource": "awscc_datasync_agent", + "identifier": "AgentArn", + "path": "../../examples/resources/awscc_datasync_agent/import.sh" + }, + { + "resource": "awscc_datasync_location_azure_blob", + "identifier": "LocationArn", + "path": "../../examples/resources/awscc_datasync_location_azure_blob/import.sh" + }, + { + "resource": "awscc_datasync_location_efs", + "identifier": "LocationArn", + "path": "../../examples/resources/awscc_datasync_location_efs/import.sh" + }, + { + "resource": "awscc_datasync_location_fsx_lustre", + "identifier": "LocationArn", + "path": "../../examples/resources/awscc_datasync_location_fsx_lustre/import.sh" + }, + { + "resource": "awscc_datasync_location_fsx_ontap", + "identifier": "LocationArn", + "path": "../../examples/resources/awscc_datasync_location_fsx_ontap/import.sh" + }, + { + "resource": "awscc_datasync_location_fsx_open_zfs", + "identifier": "LocationArn", + "path": "../../examples/resources/awscc_datasync_location_fsx_open_zfs/import.sh" + }, + { + "resource": "awscc_datasync_location_fsx_windows", + "identifier": "LocationArn", + "path": "../../examples/resources/awscc_datasync_location_fsx_windows/import.sh" + }, + { + "resource": "awscc_datasync_location_hdfs", + "identifier": "LocationArn", + "path": "../../examples/resources/awscc_datasync_location_hdfs/import.sh" + }, + { + "resource": "awscc_datasync_location_nfs", + "identifier": "LocationArn", + "path": "../../examples/resources/awscc_datasync_location_nfs/import.sh" + }, + { + "resource": "awscc_datasync_location_object_storage", + "identifier": "LocationArn", + "path": "../../examples/resources/awscc_datasync_location_object_storage/import.sh" + }, + { + "resource": "awscc_datasync_location_s3", + "identifier": "LocationArn", + "path": "../../examples/resources/awscc_datasync_location_s3/import.sh" + }, + { + "resource": "awscc_datasync_location_smb", + "identifier": "LocationArn", + "path": "../../examples/resources/awscc_datasync_location_smb/import.sh" + }, + { + "resource": "awscc_datasync_storage_system", + "identifier": "StorageSystemArn", + "path": "../../examples/resources/awscc_datasync_storage_system/import.sh" + }, + { + "resource": "awscc_datasync_task", + "identifier": "TaskArn", + "path": "../../examples/resources/awscc_datasync_task/import.sh" + }, + { + "resource": "awscc_datazone_data_source", + "identifier": "DomainId,Id", + "path": "../../examples/resources/awscc_datazone_data_source/import.sh" + }, + { + "resource": "awscc_datazone_domain", + "identifier": "Id", + "path": "../../examples/resources/awscc_datazone_domain/import.sh" + }, + { + "resource": "awscc_datazone_environment", + "identifier": "DomainId,Id", + "path": "../../examples/resources/awscc_datazone_environment/import.sh" + }, + { + "resource": "awscc_datazone_environment_blueprint_configuration", + "identifier": "DomainId,EnvironmentBlueprintId", + "path": "../../examples/resources/awscc_datazone_environment_blueprint_configuration/import.sh" + }, + { + "resource": "awscc_datazone_environment_profile", + "identifier": "DomainId,Id", + "path": "../../examples/resources/awscc_datazone_environment_profile/import.sh" + }, + { + "resource": "awscc_datazone_group_profile", + "identifier": "DomainId,Id", + "path": "../../examples/resources/awscc_datazone_group_profile/import.sh" + }, + { + "resource": "awscc_datazone_project", + "identifier": "DomainId,Id", + "path": "../../examples/resources/awscc_datazone_project/import.sh" + }, + { + "resource": "awscc_datazone_project_membership", + "identifier": "DomainIdentifier,MemberIdentifier,MemberIdentifierType,ProjectIdentifier", + "path": "../../examples/resources/awscc_datazone_project_membership/import.sh" + }, + { + "resource": "awscc_datazone_subscription_target", + "identifier": "DomainId,EnvironmentId,Id", + "path": "../../examples/resources/awscc_datazone_subscription_target/import.sh" + }, + { + "resource": "awscc_datazone_user_profile", + "identifier": "DomainId,Id", + "path": "../../examples/resources/awscc_datazone_user_profile/import.sh" + }, + { + "resource": "awscc_deadline_farm", + "identifier": "Arn", + "path": "../../examples/resources/awscc_deadline_farm/import.sh" + }, + { + "resource": "awscc_deadline_fleet", + "identifier": "Arn", + "path": "../../examples/resources/awscc_deadline_fleet/import.sh" + }, + { + "resource": "awscc_deadline_license_endpoint", + "identifier": "Arn", + "path": "../../examples/resources/awscc_deadline_license_endpoint/import.sh" + }, + { + "resource": "awscc_deadline_metered_product", + "identifier": "Arn", + "path": "../../examples/resources/awscc_deadline_metered_product/import.sh" + }, + { + "resource": "awscc_deadline_monitor", + "identifier": "Arn", + "path": "../../examples/resources/awscc_deadline_monitor/import.sh" + }, + { + "resource": "awscc_deadline_queue", + "identifier": "Arn", + "path": "../../examples/resources/awscc_deadline_queue/import.sh" + }, + { + "resource": "awscc_deadline_queue_environment", + "identifier": "FarmId,QueueId,QueueEnvironmentId", + "path": "../../examples/resources/awscc_deadline_queue_environment/import.sh" + }, + { + "resource": "awscc_deadline_queue_fleet_association", + "identifier": "FarmId,FleetId,QueueId", + "path": "../../examples/resources/awscc_deadline_queue_fleet_association/import.sh" + }, + { + "resource": "awscc_deadline_storage_profile", + "identifier": "FarmId,StorageProfileId", + "path": "../../examples/resources/awscc_deadline_storage_profile/import.sh" + }, + { + "resource": "awscc_detective_graph", + "identifier": "Arn", + "path": "../../examples/resources/awscc_detective_graph/import.sh" + }, + { + "resource": "awscc_detective_member_invitation", + "identifier": "GraphArn,MemberId", + "path": "../../examples/resources/awscc_detective_member_invitation/import.sh" + }, + { + "resource": "awscc_detective_organization_admin", + "identifier": "AccountId", + "path": "../../examples/resources/awscc_detective_organization_admin/import.sh" + }, + { + "resource": "awscc_devopsguru_log_anomaly_detection_integration", + "identifier": "AccountId", + "path": "../../examples/resources/awscc_devopsguru_log_anomaly_detection_integration/import.sh" + }, + { + "resource": "awscc_devopsguru_notification_channel", + "identifier": "Id", + "path": "../../examples/resources/awscc_devopsguru_notification_channel/import.sh" + }, + { + "resource": "awscc_devopsguru_resource_collection", + "identifier": "ResourceCollectionType", + "path": "../../examples/resources/awscc_devopsguru_resource_collection/import.sh" + }, + { + "resource": "awscc_directoryservice_simple_ad", + "identifier": "DirectoryId", + "path": "../../examples/resources/awscc_directoryservice_simple_ad/import.sh" + }, + { + "resource": "awscc_docdbelastic_cluster", + "identifier": "ClusterArn", + "path": "../../examples/resources/awscc_docdbelastic_cluster/import.sh" + }, + { + "resource": "awscc_dynamodb_global_table", + "identifier": "TableName", + "path": "../../examples/resources/awscc_dynamodb_global_table/import.sh" + }, + { + "resource": "awscc_dynamodb_table", + "identifier": "TableName", + "path": "../../examples/resources/awscc_dynamodb_table/import.sh" + }, + { + "resource": "awscc_ec2_capacity_reservation", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_capacity_reservation/import.sh" + }, + { + "resource": "awscc_ec2_capacity_reservation_fleet", + "identifier": "CapacityReservationFleetId", + "path": "../../examples/resources/awscc_ec2_capacity_reservation_fleet/import.sh" + }, + { + "resource": "awscc_ec2_carrier_gateway", + "identifier": "CarrierGatewayId", + "path": "../../examples/resources/awscc_ec2_carrier_gateway/import.sh" + }, + { + "resource": "awscc_ec2_customer_gateway", + "identifier": "CustomerGatewayId", + "path": "../../examples/resources/awscc_ec2_customer_gateway/import.sh" + }, + { + "resource": "awscc_ec2_dhcp_options", + "identifier": "DhcpOptionsId", + "path": "../../examples/resources/awscc_ec2_dhcp_options/import.sh" + }, + { + "resource": "awscc_ec2_ec2_fleet", + "identifier": "FleetId", + "path": "../../examples/resources/awscc_ec2_ec2_fleet/import.sh" + }, + { + "resource": "awscc_ec2_eip", + "identifier": "PublicIp,AllocationId", + "path": "../../examples/resources/awscc_ec2_eip/import.sh" + }, + { + "resource": "awscc_ec2_eip_association", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_eip_association/import.sh" + }, + { + "resource": "awscc_ec2_egress_only_internet_gateway", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_egress_only_internet_gateway/import.sh" + }, + { + "resource": "awscc_ec2_enclave_certificate_iam_role_association", + "identifier": "CertificateArn,RoleArn", + "path": "../../examples/resources/awscc_ec2_enclave_certificate_iam_role_association/import.sh" + }, + { + "resource": "awscc_ec2_flow_log", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_flow_log/import.sh" + }, + { + "resource": "awscc_ec2_gateway_route_table_association", + "identifier": "GatewayId", + "path": "../../examples/resources/awscc_ec2_gateway_route_table_association/import.sh" + }, + { + "resource": "awscc_ec2_host", + "identifier": "HostId", + "path": "../../examples/resources/awscc_ec2_host/import.sh" + }, + { + "resource": "awscc_ec2_ipam", + "identifier": "IpamId", + "path": "../../examples/resources/awscc_ec2_ipam/import.sh" + }, + { + "resource": "awscc_ec2_ipam_allocation", + "identifier": "IpamPoolId,IpamPoolAllocationId,Cidr", + "path": "../../examples/resources/awscc_ec2_ipam_allocation/import.sh" + }, + { + "resource": "awscc_ec2_ipam_pool", + "identifier": "IpamPoolId", + "path": "../../examples/resources/awscc_ec2_ipam_pool/import.sh" + }, + { + "resource": "awscc_ec2_ipam_pool_cidr", + "identifier": "IpamPoolId,IpamPoolCidrId", + "path": "../../examples/resources/awscc_ec2_ipam_pool_cidr/import.sh" + }, + { + "resource": "awscc_ec2_ipam_resource_discovery", + "identifier": "IpamResourceDiscoveryId", + "path": "../../examples/resources/awscc_ec2_ipam_resource_discovery/import.sh" + }, + { + "resource": "awscc_ec2_ipam_resource_discovery_association", + "identifier": "IpamResourceDiscoveryAssociationId", + "path": "../../examples/resources/awscc_ec2_ipam_resource_discovery_association/import.sh" + }, + { + "resource": "awscc_ec2_ipam_scope", + "identifier": "IpamScopeId", + "path": "../../examples/resources/awscc_ec2_ipam_scope/import.sh" + }, + { + "resource": "awscc_ec2_instance", + "identifier": "InstanceId", + "path": "../../examples/resources/awscc_ec2_instance/import.sh" + }, + { + "resource": "awscc_ec2_instance_connect_endpoint", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_instance_connect_endpoint/import.sh" + }, + { + "resource": "awscc_ec2_internet_gateway", + "identifier": "InternetGatewayId", + "path": "../../examples/resources/awscc_ec2_internet_gateway/import.sh" + }, + { + "resource": "awscc_ec2_key_pair", + "identifier": "KeyName", + "path": "../../examples/resources/awscc_ec2_key_pair/import.sh" + }, + { + "resource": "awscc_ec2_launch_template", + "identifier": "LaunchTemplateId", + "path": "../../examples/resources/awscc_ec2_launch_template/import.sh" + }, + { + "resource": "awscc_ec2_local_gateway_route", + "identifier": "DestinationCidrBlock,LocalGatewayRouteTableId", + "path": "../../examples/resources/awscc_ec2_local_gateway_route/import.sh" + }, + { + "resource": "awscc_ec2_local_gateway_route_table", + "identifier": "LocalGatewayRouteTableId", + "path": "../../examples/resources/awscc_ec2_local_gateway_route_table/import.sh" + }, + { + "resource": "awscc_ec2_local_gateway_route_table_vpc_association", + "identifier": "LocalGatewayRouteTableVpcAssociationId", + "path": "../../examples/resources/awscc_ec2_local_gateway_route_table_vpc_association/import.sh" + }, + { + "resource": "awscc_ec2_local_gateway_route_table_virtual_interface_group_association", + "identifier": "LocalGatewayRouteTableVirtualInterfaceGroupAssociationId", + "path": "../../examples/resources/awscc_ec2_local_gateway_route_table_virtual_interface_group_association/import.sh" + }, + { + "resource": "awscc_ec2_nat_gateway", + "identifier": "NatGatewayId", + "path": "../../examples/resources/awscc_ec2_nat_gateway/import.sh" + }, + { + "resource": "awscc_ec2_network_acl", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_network_acl/import.sh" + }, + { + "resource": "awscc_ec2_network_insights_access_scope", + "identifier": "NetworkInsightsAccessScopeId", + "path": "../../examples/resources/awscc_ec2_network_insights_access_scope/import.sh" + }, + { + "resource": "awscc_ec2_network_insights_access_scope_analysis", + "identifier": "NetworkInsightsAccessScopeAnalysisId", + "path": "../../examples/resources/awscc_ec2_network_insights_access_scope_analysis/import.sh" + }, + { + "resource": "awscc_ec2_network_insights_analysis", + "identifier": "NetworkInsightsAnalysisId", + "path": "../../examples/resources/awscc_ec2_network_insights_analysis/import.sh" + }, + { + "resource": "awscc_ec2_network_insights_path", + "identifier": "NetworkInsightsPathId", + "path": "../../examples/resources/awscc_ec2_network_insights_path/import.sh" + }, + { + "resource": "awscc_ec2_network_interface", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_network_interface/import.sh" + }, + { + "resource": "awscc_ec2_network_interface_attachment", + "identifier": "AttachmentId", + "path": "../../examples/resources/awscc_ec2_network_interface_attachment/import.sh" + }, + { + "resource": "awscc_ec2_network_performance_metric_subscription", + "identifier": "Source,Destination,Metric,Statistic", + "path": "../../examples/resources/awscc_ec2_network_performance_metric_subscription/import.sh" + }, + { + "resource": "awscc_ec2_placement_group", + "identifier": "GroupName", + "path": "../../examples/resources/awscc_ec2_placement_group/import.sh" + }, + { + "resource": "awscc_ec2_prefix_list", + "identifier": "PrefixListId", + "path": "../../examples/resources/awscc_ec2_prefix_list/import.sh" + }, + { + "resource": "awscc_ec2_route", + "identifier": "RouteTableId,CidrBlock", + "path": "../../examples/resources/awscc_ec2_route/import.sh" + }, + { + "resource": "awscc_ec2_route_table", + "identifier": "RouteTableId", + "path": "../../examples/resources/awscc_ec2_route_table/import.sh" + }, + { + "resource": "awscc_ec2_security_group", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_security_group/import.sh" + }, + { + "resource": "awscc_ec2_security_group_egress", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_security_group_egress/import.sh" + }, + { + "resource": "awscc_ec2_security_group_ingress", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_security_group_ingress/import.sh" + }, + { + "resource": "awscc_ec2_snapshot_block_public_access", + "identifier": "AccountId", + "path": "../../examples/resources/awscc_ec2_snapshot_block_public_access/import.sh" + }, + { + "resource": "awscc_ec2_spot_fleet", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_spot_fleet/import.sh" + }, + { + "resource": "awscc_ec2_subnet", + "identifier": "SubnetId", + "path": "../../examples/resources/awscc_ec2_subnet/import.sh" + }, + { + "resource": "awscc_ec2_subnet_cidr_block", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_subnet_cidr_block/import.sh" + }, + { + "resource": "awscc_ec2_subnet_network_acl_association", + "identifier": "AssociationId", + "path": "../../examples/resources/awscc_ec2_subnet_network_acl_association/import.sh" + }, + { + "resource": "awscc_ec2_subnet_route_table_association", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_subnet_route_table_association/import.sh" + }, + { + "resource": "awscc_ec2_transit_gateway", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_transit_gateway/import.sh" + }, + { + "resource": "awscc_ec2_transit_gateway_attachment", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_transit_gateway_attachment/import.sh" + }, + { + "resource": "awscc_ec2_transit_gateway_connect", + "identifier": "TransitGatewayAttachmentId", + "path": "../../examples/resources/awscc_ec2_transit_gateway_connect/import.sh" + }, + { + "resource": "awscc_ec2_transit_gateway_multicast_domain", + "identifier": "TransitGatewayMulticastDomainId", + "path": "../../examples/resources/awscc_ec2_transit_gateway_multicast_domain/import.sh" + }, + { + "resource": "awscc_ec2_transit_gateway_multicast_domain_association", + "identifier": "TransitGatewayMulticastDomainId,TransitGatewayAttachmentId,SubnetId", + "path": "../../examples/resources/awscc_ec2_transit_gateway_multicast_domain_association/import.sh" + }, + { + "resource": "awscc_ec2_transit_gateway_multicast_group_member", + "identifier": "TransitGatewayMulticastDomainId,GroupIpAddress,NetworkInterfaceId", + "path": "../../examples/resources/awscc_ec2_transit_gateway_multicast_group_member/import.sh" + }, + { + "resource": "awscc_ec2_transit_gateway_multicast_group_source", + "identifier": "TransitGatewayMulticastDomainId,GroupIpAddress,NetworkInterfaceId", + "path": "../../examples/resources/awscc_ec2_transit_gateway_multicast_group_source/import.sh" + }, + { + "resource": "awscc_ec2_transit_gateway_peering_attachment", + "identifier": "TransitGatewayAttachmentId", + "path": "../../examples/resources/awscc_ec2_transit_gateway_peering_attachment/import.sh" + }, + { + "resource": "awscc_ec2_transit_gateway_route", + "identifier": "TransitGatewayRouteTableId,DestinationCidrBlock", + "path": "../../examples/resources/awscc_ec2_transit_gateway_route/import.sh" + }, + { + "resource": "awscc_ec2_transit_gateway_route_table", + "identifier": "TransitGatewayRouteTableId", + "path": "../../examples/resources/awscc_ec2_transit_gateway_route_table/import.sh" + }, + { + "resource": "awscc_ec2_transit_gateway_route_table_association", + "identifier": "TransitGatewayRouteTableId,TransitGatewayAttachmentId", + "path": "../../examples/resources/awscc_ec2_transit_gateway_route_table_association/import.sh" + }, + { + "resource": "awscc_ec2_transit_gateway_route_table_propagation", + "identifier": "TransitGatewayRouteTableId,TransitGatewayAttachmentId", + "path": "../../examples/resources/awscc_ec2_transit_gateway_route_table_propagation/import.sh" + }, + { + "resource": "awscc_ec2_transit_gateway_vpc_attachment", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_transit_gateway_vpc_attachment/import.sh" + }, + { + "resource": "awscc_ec2_vpc", + "identifier": "VpcId", + "path": "../../examples/resources/awscc_ec2_vpc/import.sh" + }, + { + "resource": "awscc_ec2_vpc_cidr_block", + "identifier": "Id,VpcId", + "path": "../../examples/resources/awscc_ec2_vpc_cidr_block/import.sh" + }, + { + "resource": "awscc_ec2_vpcdhcp_options_association", + "identifier": "DhcpOptionsId,VpcId", + "path": "../../examples/resources/awscc_ec2_vpcdhcp_options_association/import.sh" + }, + { + "resource": "awscc_ec2_vpc_endpoint", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_vpc_endpoint/import.sh" + }, + { + "resource": "awscc_ec2_vpc_endpoint_connection_notification", + "identifier": "VPCEndpointConnectionNotificationId", + "path": "../../examples/resources/awscc_ec2_vpc_endpoint_connection_notification/import.sh" + }, + { + "resource": "awscc_ec2_vpc_endpoint_service", + "identifier": "ServiceId", + "path": "../../examples/resources/awscc_ec2_vpc_endpoint_service/import.sh" + }, + { + "resource": "awscc_ec2_vpc_endpoint_service_permissions", + "identifier": "ServiceId", + "path": "../../examples/resources/awscc_ec2_vpc_endpoint_service_permissions/import.sh" + }, + { + "resource": "awscc_ec2_vpc_gateway_attachment", + "identifier": "AttachmentType,VpcId", + "path": "../../examples/resources/awscc_ec2_vpc_gateway_attachment/import.sh" + }, + { + "resource": "awscc_ec2_vpc_peering_connection", + "identifier": "Id", + "path": "../../examples/resources/awscc_ec2_vpc_peering_connection/import.sh" + }, + { + "resource": "awscc_ec2_vpn_connection", + "identifier": "VpnConnectionId", + "path": "../../examples/resources/awscc_ec2_vpn_connection/import.sh" + }, + { + "resource": "awscc_ec2_vpn_connection_route", + "identifier": "DestinationCidrBlock,VpnConnectionId", + "path": "../../examples/resources/awscc_ec2_vpn_connection_route/import.sh" + }, + { + "resource": "awscc_ec2_vpn_gateway", + "identifier": "VPNGatewayId", + "path": "../../examples/resources/awscc_ec2_vpn_gateway/import.sh" + }, + { + "resource": "awscc_ec2_verified_access_endpoint", + "identifier": "VerifiedAccessEndpointId", + "path": "../../examples/resources/awscc_ec2_verified_access_endpoint/import.sh" + }, + { + "resource": "awscc_ec2_verified_access_group", + "identifier": "VerifiedAccessGroupId", + "path": "../../examples/resources/awscc_ec2_verified_access_group/import.sh" + }, + { + "resource": "awscc_ec2_verified_access_instance", + "identifier": "VerifiedAccessInstanceId", + "path": "../../examples/resources/awscc_ec2_verified_access_instance/import.sh" + }, + { + "resource": "awscc_ec2_verified_access_trust_provider", + "identifier": "VerifiedAccessTrustProviderId", + "path": "../../examples/resources/awscc_ec2_verified_access_trust_provider/import.sh" + }, + { + "resource": "awscc_ec2_volume", + "identifier": "VolumeId", + "path": "../../examples/resources/awscc_ec2_volume/import.sh" + }, + { + "resource": "awscc_ec2_volume_attachment", + "identifier": "VolumeId,InstanceId", + "path": "../../examples/resources/awscc_ec2_volume_attachment/import.sh" + }, + { + "resource": "awscc_ecr_public_repository", + "identifier": "RepositoryName", + "path": "../../examples/resources/awscc_ecr_public_repository/import.sh" + }, + { + "resource": "awscc_ecr_pull_through_cache_rule", + "identifier": "EcrRepositoryPrefix", + "path": "../../examples/resources/awscc_ecr_pull_through_cache_rule/import.sh" + }, + { + "resource": "awscc_ecr_registry_policy", + "identifier": "RegistryId", + "path": "../../examples/resources/awscc_ecr_registry_policy/import.sh" + }, + { + "resource": "awscc_ecr_replication_configuration", + "identifier": "RegistryId", + "path": "../../examples/resources/awscc_ecr_replication_configuration/import.sh" + }, + { + "resource": "awscc_ecr_repository", + "identifier": "RepositoryName", + "path": "../../examples/resources/awscc_ecr_repository/import.sh" + }, + { + "resource": "awscc_ecr_repository_creation_template", + "identifier": "Prefix", + "path": "../../examples/resources/awscc_ecr_repository_creation_template/import.sh" + }, + { + "resource": "awscc_ecs_capacity_provider", + "identifier": "Name", + "path": "../../examples/resources/awscc_ecs_capacity_provider/import.sh" + }, + { + "resource": "awscc_ecs_cluster", + "identifier": "ClusterName", + "path": "../../examples/resources/awscc_ecs_cluster/import.sh" + }, + { + "resource": "awscc_ecs_cluster_capacity_provider_associations", + "identifier": "Cluster", + "path": "../../examples/resources/awscc_ecs_cluster_capacity_provider_associations/import.sh" + }, + { + "resource": "awscc_ecs_primary_task_set", + "identifier": "Cluster,Service", + "path": "../../examples/resources/awscc_ecs_primary_task_set/import.sh" + }, + { + "resource": "awscc_ecs_service", + "identifier": "ServiceArn,Cluster", + "path": "../../examples/resources/awscc_ecs_service/import.sh" + }, + { + "resource": "awscc_ecs_task_definition", + "identifier": "TaskDefinitionArn", + "path": "../../examples/resources/awscc_ecs_task_definition/import.sh" + }, + { + "resource": "awscc_ecs_task_set", + "identifier": "Cluster,Service,Id", + "path": "../../examples/resources/awscc_ecs_task_set/import.sh" + }, + { + "resource": "awscc_efs_access_point", + "identifier": "AccessPointId", + "path": "../../examples/resources/awscc_efs_access_point/import.sh" + }, + { + "resource": "awscc_efs_file_system", + "identifier": "FileSystemId", + "path": "../../examples/resources/awscc_efs_file_system/import.sh" + }, + { + "resource": "awscc_efs_mount_target", + "identifier": "Id", + "path": "../../examples/resources/awscc_efs_mount_target/import.sh" + }, + { + "resource": "awscc_eks_access_entry", + "identifier": "PrincipalArn,ClusterName", + "path": "../../examples/resources/awscc_eks_access_entry/import.sh" + }, + { + "resource": "awscc_eks_addon", + "identifier": "ClusterName,AddonName", + "path": "../../examples/resources/awscc_eks_addon/import.sh" + }, + { + "resource": "awscc_eks_cluster", + "identifier": "Name", + "path": "../../examples/resources/awscc_eks_cluster/import.sh" + }, + { + "resource": "awscc_eks_fargate_profile", + "identifier": "ClusterName,FargateProfileName", + "path": "../../examples/resources/awscc_eks_fargate_profile/import.sh" + }, + { + "resource": "awscc_eks_identity_provider_config", + "identifier": "IdentityProviderConfigName,ClusterName,Type", + "path": "../../examples/resources/awscc_eks_identity_provider_config/import.sh" + }, + { + "resource": "awscc_eks_nodegroup", + "identifier": "Id", + "path": "../../examples/resources/awscc_eks_nodegroup/import.sh" + }, + { + "resource": "awscc_eks_pod_identity_association", + "identifier": "AssociationArn", + "path": "../../examples/resources/awscc_eks_pod_identity_association/import.sh" + }, + { + "resource": "awscc_emr_security_configuration", + "identifier": "Name", + "path": "../../examples/resources/awscc_emr_security_configuration/import.sh" + }, + { + "resource": "awscc_emr_studio", + "identifier": "StudioId", + "path": "../../examples/resources/awscc_emr_studio/import.sh" + }, + { + "resource": "awscc_emr_studio_session_mapping", + "identifier": "StudioId,IdentityType,IdentityName", + "path": "../../examples/resources/awscc_emr_studio_session_mapping/import.sh" + }, + { + "resource": "awscc_emr_wal_workspace", + "identifier": "WALWorkspaceName", + "path": "../../examples/resources/awscc_emr_wal_workspace/import.sh" + }, + { + "resource": "awscc_emrcontainers_virtual_cluster", + "identifier": "Id", + "path": "../../examples/resources/awscc_emrcontainers_virtual_cluster/import.sh" + }, + { + "resource": "awscc_emrserverless_application", + "identifier": "ApplicationId", + "path": "../../examples/resources/awscc_emrserverless_application/import.sh" + }, + { + "resource": "awscc_elasticache_global_replication_group", + "identifier": "GlobalReplicationGroupId", + "path": "../../examples/resources/awscc_elasticache_global_replication_group/import.sh" + }, + { + "resource": "awscc_elasticache_parameter_group", + "identifier": "CacheParameterGroupName", + "path": "../../examples/resources/awscc_elasticache_parameter_group/import.sh" + }, + { + "resource": "awscc_elasticache_serverless_cache", + "identifier": "ServerlessCacheName", + "path": "../../examples/resources/awscc_elasticache_serverless_cache/import.sh" + }, + { + "resource": "awscc_elasticache_subnet_group", + "identifier": "CacheSubnetGroupName", + "path": "../../examples/resources/awscc_elasticache_subnet_group/import.sh" + }, + { + "resource": "awscc_elasticache_user", + "identifier": "UserId", + "path": "../../examples/resources/awscc_elasticache_user/import.sh" + }, + { + "resource": "awscc_elasticache_user_group", + "identifier": "UserGroupId", + "path": "../../examples/resources/awscc_elasticache_user_group/import.sh" + }, + { + "resource": "awscc_elasticbeanstalk_application", + "identifier": "ApplicationName", + "path": "../../examples/resources/awscc_elasticbeanstalk_application/import.sh" + }, + { + "resource": "awscc_elasticbeanstalk_application_version", + "identifier": "ApplicationName,Id", + "path": "../../examples/resources/awscc_elasticbeanstalk_application_version/import.sh" + }, + { + "resource": "awscc_elasticbeanstalk_configuration_template", + "identifier": "ApplicationName,TemplateName", + "path": "../../examples/resources/awscc_elasticbeanstalk_configuration_template/import.sh" + }, + { + "resource": "awscc_elasticbeanstalk_environment", + "identifier": "EnvironmentName", + "path": "../../examples/resources/awscc_elasticbeanstalk_environment/import.sh" + }, + { + "resource": "awscc_elasticloadbalancingv2_load_balancer", + "identifier": "LoadBalancerArn", + "path": "../../examples/resources/awscc_elasticloadbalancingv2_load_balancer/import.sh" + }, + { + "resource": "awscc_elasticloadbalancingv2_target_group", + "identifier": "TargetGroupArn", + "path": "../../examples/resources/awscc_elasticloadbalancingv2_target_group/import.sh" + }, + { + "resource": "awscc_elasticloadbalancingv2_trust_store", + "identifier": "TrustStoreArn", + "path": "../../examples/resources/awscc_elasticloadbalancingv2_trust_store/import.sh" + }, + { + "resource": "awscc_elasticloadbalancingv2_trust_store_revocation", + "identifier": "RevocationId,TrustStoreArn", + "path": "../../examples/resources/awscc_elasticloadbalancingv2_trust_store_revocation/import.sh" + }, + { + "resource": "awscc_entityresolution_id_mapping_workflow", + "identifier": "WorkflowName", + "path": "../../examples/resources/awscc_entityresolution_id_mapping_workflow/import.sh" + }, + { + "resource": "awscc_entityresolution_id_namespace", + "identifier": "IdNamespaceName", + "path": "../../examples/resources/awscc_entityresolution_id_namespace/import.sh" + }, + { + "resource": "awscc_entityresolution_matching_workflow", + "identifier": "WorkflowName", + "path": "../../examples/resources/awscc_entityresolution_matching_workflow/import.sh" + }, + { + "resource": "awscc_entityresolution_policy_statement", + "identifier": "Arn,StatementId", + "path": "../../examples/resources/awscc_entityresolution_policy_statement/import.sh" + }, + { + "resource": "awscc_entityresolution_schema_mapping", + "identifier": "SchemaName", + "path": "../../examples/resources/awscc_entityresolution_schema_mapping/import.sh" + }, + { + "resource": "awscc_eventschemas_discoverer", + "identifier": "DiscovererArn", + "path": "../../examples/resources/awscc_eventschemas_discoverer/import.sh" + }, + { + "resource": "awscc_eventschemas_registry", + "identifier": "RegistryArn", + "path": "../../examples/resources/awscc_eventschemas_registry/import.sh" + }, + { + "resource": "awscc_eventschemas_registry_policy", + "identifier": "Id", + "path": "../../examples/resources/awscc_eventschemas_registry_policy/import.sh" + }, + { + "resource": "awscc_eventschemas_schema", + "identifier": "SchemaArn", + "path": "../../examples/resources/awscc_eventschemas_schema/import.sh" + }, + { + "resource": "awscc_events_api_destination", + "identifier": "Name", + "path": "../../examples/resources/awscc_events_api_destination/import.sh" + }, + { + "resource": "awscc_events_archive", + "identifier": "ArchiveName", + "path": "../../examples/resources/awscc_events_archive/import.sh" + }, + { + "resource": "awscc_events_endpoint", + "identifier": "Name", + "path": "../../examples/resources/awscc_events_endpoint/import.sh" + }, + { + "resource": "awscc_events_event_bus", + "identifier": "Name", + "path": "../../examples/resources/awscc_events_event_bus/import.sh" + }, + { + "resource": "awscc_events_rule", + "identifier": "Arn", + "path": "../../examples/resources/awscc_events_rule/import.sh" + }, + { + "resource": "awscc_evidently_experiment", + "identifier": "Arn", + "path": "../../examples/resources/awscc_evidently_experiment/import.sh" + }, + { + "resource": "awscc_evidently_feature", + "identifier": "Arn", + "path": "../../examples/resources/awscc_evidently_feature/import.sh" + }, + { + "resource": "awscc_evidently_launch", + "identifier": "Arn", + "path": "../../examples/resources/awscc_evidently_launch/import.sh" + }, + { + "resource": "awscc_evidently_project", + "identifier": "Arn", + "path": "../../examples/resources/awscc_evidently_project/import.sh" + }, + { + "resource": "awscc_evidently_segment", + "identifier": "Arn", + "path": "../../examples/resources/awscc_evidently_segment/import.sh" + }, + { + "resource": "awscc_fis_experiment_template", + "identifier": "Id", + "path": "../../examples/resources/awscc_fis_experiment_template/import.sh" + }, + { + "resource": "awscc_fis_target_account_configuration", + "identifier": "ExperimentTemplateId,AccountId", + "path": "../../examples/resources/awscc_fis_target_account_configuration/import.sh" + }, + { + "resource": "awscc_fms_notification_channel", + "identifier": "SnsTopicArn", + "path": "../../examples/resources/awscc_fms_notification_channel/import.sh" + }, + { + "resource": "awscc_fms_policy", + "identifier": "Id", + "path": "../../examples/resources/awscc_fms_policy/import.sh" + }, + { + "resource": "awscc_fms_resource_set", + "identifier": "Id", + "path": "../../examples/resources/awscc_fms_resource_set/import.sh" + }, + { + "resource": "awscc_fsx_data_repository_association", + "identifier": "AssociationId", + "path": "../../examples/resources/awscc_fsx_data_repository_association/import.sh" + }, + { + "resource": "awscc_finspace_environment", + "identifier": "EnvironmentId", + "path": "../../examples/resources/awscc_finspace_environment/import.sh" + }, + { + "resource": "awscc_forecast_dataset", + "identifier": "Arn", + "path": "../../examples/resources/awscc_forecast_dataset/import.sh" + }, + { + "resource": "awscc_forecast_dataset_group", + "identifier": "DatasetGroupArn", + "path": "../../examples/resources/awscc_forecast_dataset_group/import.sh" + }, + { + "resource": "awscc_frauddetector_detector", + "identifier": "Arn", + "path": "../../examples/resources/awscc_frauddetector_detector/import.sh" + }, + { + "resource": "awscc_frauddetector_entity_type", + "identifier": "Arn", + "path": "../../examples/resources/awscc_frauddetector_entity_type/import.sh" + }, + { + "resource": "awscc_frauddetector_event_type", + "identifier": "Arn", + "path": "../../examples/resources/awscc_frauddetector_event_type/import.sh" + }, + { + "resource": "awscc_frauddetector_label", + "identifier": "Arn", + "path": "../../examples/resources/awscc_frauddetector_label/import.sh" + }, + { + "resource": "awscc_frauddetector_list", + "identifier": "Arn", + "path": "../../examples/resources/awscc_frauddetector_list/import.sh" + }, + { + "resource": "awscc_frauddetector_outcome", + "identifier": "Arn", + "path": "../../examples/resources/awscc_frauddetector_outcome/import.sh" + }, + { + "resource": "awscc_frauddetector_variable", + "identifier": "Arn", + "path": "../../examples/resources/awscc_frauddetector_variable/import.sh" + }, + { + "resource": "awscc_gamelift_alias", + "identifier": "AliasId", + "path": "../../examples/resources/awscc_gamelift_alias/import.sh" + }, + { + "resource": "awscc_gamelift_build", + "identifier": "BuildId", + "path": "../../examples/resources/awscc_gamelift_build/import.sh" + }, + { + "resource": "awscc_gamelift_container_group_definition", + "identifier": "Name", + "path": "../../examples/resources/awscc_gamelift_container_group_definition/import.sh" + }, + { + "resource": "awscc_gamelift_fleet", + "identifier": "FleetId", + "path": "../../examples/resources/awscc_gamelift_fleet/import.sh" + }, + { + "resource": "awscc_gamelift_game_server_group", + "identifier": "GameServerGroupArn", + "path": "../../examples/resources/awscc_gamelift_game_server_group/import.sh" + }, + { + "resource": "awscc_gamelift_game_session_queue", + "identifier": "Name", + "path": "../../examples/resources/awscc_gamelift_game_session_queue/import.sh" + }, + { + "resource": "awscc_gamelift_location", + "identifier": "LocationName", + "path": "../../examples/resources/awscc_gamelift_location/import.sh" + }, + { + "resource": "awscc_gamelift_matchmaking_configuration", + "identifier": "Name", + "path": "../../examples/resources/awscc_gamelift_matchmaking_configuration/import.sh" + }, + { + "resource": "awscc_gamelift_matchmaking_rule_set", + "identifier": "Name", + "path": "../../examples/resources/awscc_gamelift_matchmaking_rule_set/import.sh" + }, + { + "resource": "awscc_gamelift_script", + "identifier": "Id", + "path": "../../examples/resources/awscc_gamelift_script/import.sh" + }, + { + "resource": "awscc_globalaccelerator_accelerator", + "identifier": "AcceleratorArn", + "path": "../../examples/resources/awscc_globalaccelerator_accelerator/import.sh" + }, + { + "resource": "awscc_globalaccelerator_cross_account_attachment", + "identifier": "AttachmentArn", + "path": "../../examples/resources/awscc_globalaccelerator_cross_account_attachment/import.sh" + }, + { + "resource": "awscc_globalaccelerator_endpoint_group", + "identifier": "EndpointGroupArn", + "path": "../../examples/resources/awscc_globalaccelerator_endpoint_group/import.sh" + }, + { + "resource": "awscc_globalaccelerator_listener", + "identifier": "ListenerArn", + "path": "../../examples/resources/awscc_globalaccelerator_listener/import.sh" + }, + { + "resource": "awscc_glue_database", + "identifier": "DatabaseName", + "path": "../../examples/resources/awscc_glue_database/import.sh" + }, + { + "resource": "awscc_glue_registry", + "identifier": "Arn", + "path": "../../examples/resources/awscc_glue_registry/import.sh" + }, + { + "resource": "awscc_glue_schema", + "identifier": "Arn", + "path": "../../examples/resources/awscc_glue_schema/import.sh" + }, + { + "resource": "awscc_glue_schema_version", + "identifier": "VersionId", + "path": "../../examples/resources/awscc_glue_schema_version/import.sh" + }, + { + "resource": "awscc_glue_schema_version_metadata", + "identifier": "SchemaVersionId,Key,Value", + "path": "../../examples/resources/awscc_glue_schema_version_metadata/import.sh" + }, + { + "resource": "awscc_glue_trigger", + "identifier": "Name", + "path": "../../examples/resources/awscc_glue_trigger/import.sh" + }, + { + "resource": "awscc_grafana_workspace", + "identifier": "Id", + "path": "../../examples/resources/awscc_grafana_workspace/import.sh" + }, + { + "resource": "awscc_greengrassv2_component_version", + "identifier": "Arn", + "path": "../../examples/resources/awscc_greengrassv2_component_version/import.sh" + }, + { + "resource": "awscc_greengrassv2_deployment", + "identifier": "DeploymentId", + "path": "../../examples/resources/awscc_greengrassv2_deployment/import.sh" + }, + { + "resource": "awscc_groundstation_config", + "identifier": "Arn", + "path": "../../examples/resources/awscc_groundstation_config/import.sh" + }, + { + "resource": "awscc_groundstation_dataflow_endpoint_group", + "identifier": "Id", + "path": "../../examples/resources/awscc_groundstation_dataflow_endpoint_group/import.sh" + }, + { + "resource": "awscc_groundstation_mission_profile", + "identifier": "Id,Arn", + "path": "../../examples/resources/awscc_groundstation_mission_profile/import.sh" + }, + { + "resource": "awscc_guardduty_detector", + "identifier": "Id", + "path": "../../examples/resources/awscc_guardduty_detector/import.sh" + }, + { + "resource": "awscc_guardduty_filter", + "identifier": "DetectorId,Name", + "path": "../../examples/resources/awscc_guardduty_filter/import.sh" + }, + { + "resource": "awscc_guardduty_ip_set", + "identifier": "Id,DetectorId", + "path": "../../examples/resources/awscc_guardduty_ip_set/import.sh" + }, + { + "resource": "awscc_guardduty_malware_protection_plan", + "identifier": "MalwareProtectionPlanId", + "path": "../../examples/resources/awscc_guardduty_malware_protection_plan/import.sh" + }, + { + "resource": "awscc_guardduty_master", + "identifier": "DetectorId,MasterId", + "path": "../../examples/resources/awscc_guardduty_master/import.sh" + }, + { + "resource": "awscc_guardduty_member", + "identifier": "DetectorId,MemberId", + "path": "../../examples/resources/awscc_guardduty_member/import.sh" + }, + { + "resource": "awscc_guardduty_threat_intel_set", + "identifier": "Id,DetectorId", + "path": "../../examples/resources/awscc_guardduty_threat_intel_set/import.sh" + }, + { + "resource": "awscc_healthimaging_datastore", + "identifier": "DatastoreId", + "path": "../../examples/resources/awscc_healthimaging_datastore/import.sh" + }, + { + "resource": "awscc_healthlake_fhir_datastore", + "identifier": "DatastoreId", + "path": "../../examples/resources/awscc_healthlake_fhir_datastore/import.sh" + }, + { + "resource": "awscc_iam_group", + "identifier": "GroupName", + "path": "../../examples/resources/awscc_iam_group/import.sh" + }, + { + "resource": "awscc_iam_group_policy", + "identifier": "PolicyName,GroupName", + "path": "../../examples/resources/awscc_iam_group_policy/import.sh" + }, + { + "resource": "awscc_iam_instance_profile", + "identifier": "InstanceProfileName", + "path": "../../examples/resources/awscc_iam_instance_profile/import.sh" + }, + { + "resource": "awscc_iam_managed_policy", + "identifier": "PolicyArn", + "path": "../../examples/resources/awscc_iam_managed_policy/import.sh" + }, + { + "resource": "awscc_iam_oidc_provider", + "identifier": "Arn", + "path": "../../examples/resources/awscc_iam_oidc_provider/import.sh" + }, + { + "resource": "awscc_iam_role", + "identifier": "RoleName", + "path": "../../examples/resources/awscc_iam_role/import.sh" + }, + { + "resource": "awscc_iam_role_policy", + "identifier": "PolicyName,RoleName", + "path": "../../examples/resources/awscc_iam_role_policy/import.sh" + }, + { + "resource": "awscc_iam_saml_provider", + "identifier": "Arn", + "path": "../../examples/resources/awscc_iam_saml_provider/import.sh" + }, + { + "resource": "awscc_iam_server_certificate", + "identifier": "ServerCertificateName", + "path": "../../examples/resources/awscc_iam_server_certificate/import.sh" + }, + { + "resource": "awscc_iam_service_linked_role", + "identifier": "RoleName", + "path": "../../examples/resources/awscc_iam_service_linked_role/import.sh" + }, + { + "resource": "awscc_iam_user", + "identifier": "UserName", + "path": "../../examples/resources/awscc_iam_user/import.sh" + }, + { + "resource": "awscc_iam_user_policy", + "identifier": "PolicyName,UserName", + "path": "../../examples/resources/awscc_iam_user_policy/import.sh" + }, + { + "resource": "awscc_iam_virtual_mfa_device", + "identifier": "SerialNumber", + "path": "../../examples/resources/awscc_iam_virtual_mfa_device/import.sh" + }, + { + "resource": "awscc_ivs_channel", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ivs_channel/import.sh" + }, + { + "resource": "awscc_ivs_encoder_configuration", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ivs_encoder_configuration/import.sh" + }, + { + "resource": "awscc_ivs_playback_key_pair", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ivs_playback_key_pair/import.sh" + }, + { + "resource": "awscc_ivs_playback_restriction_policy", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ivs_playback_restriction_policy/import.sh" + }, + { + "resource": "awscc_ivs_public_key", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ivs_public_key/import.sh" + }, + { + "resource": "awscc_ivs_recording_configuration", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ivs_recording_configuration/import.sh" + }, + { + "resource": "awscc_ivs_stage", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ivs_stage/import.sh" + }, + { + "resource": "awscc_ivs_storage_configuration", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ivs_storage_configuration/import.sh" + }, + { + "resource": "awscc_ivs_stream_key", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ivs_stream_key/import.sh" + }, + { + "resource": "awscc_ivschat_logging_configuration", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ivschat_logging_configuration/import.sh" + }, + { + "resource": "awscc_ivschat_room", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ivschat_room/import.sh" + }, + { + "resource": "awscc_identitystore_group", + "identifier": "GroupId,IdentityStoreId", + "path": "../../examples/resources/awscc_identitystore_group/import.sh" + }, + { + "resource": "awscc_identitystore_group_membership", + "identifier": "MembershipId,IdentityStoreId", + "path": "../../examples/resources/awscc_identitystore_group_membership/import.sh" + }, + { + "resource": "awscc_imagebuilder_component", + "identifier": "Arn", + "path": "../../examples/resources/awscc_imagebuilder_component/import.sh" + }, + { + "resource": "awscc_imagebuilder_container_recipe", + "identifier": "Arn", + "path": "../../examples/resources/awscc_imagebuilder_container_recipe/import.sh" + }, + { + "resource": "awscc_imagebuilder_distribution_configuration", + "identifier": "Arn", + "path": "../../examples/resources/awscc_imagebuilder_distribution_configuration/import.sh" + }, + { + "resource": "awscc_imagebuilder_image", + "identifier": "Arn", + "path": "../../examples/resources/awscc_imagebuilder_image/import.sh" + }, + { + "resource": "awscc_imagebuilder_image_pipeline", + "identifier": "Arn", + "path": "../../examples/resources/awscc_imagebuilder_image_pipeline/import.sh" + }, + { + "resource": "awscc_imagebuilder_image_recipe", + "identifier": "Arn", + "path": "../../examples/resources/awscc_imagebuilder_image_recipe/import.sh" + }, + { + "resource": "awscc_imagebuilder_infrastructure_configuration", + "identifier": "Arn", + "path": "../../examples/resources/awscc_imagebuilder_infrastructure_configuration/import.sh" + }, + { + "resource": "awscc_imagebuilder_lifecycle_policy", + "identifier": "Arn", + "path": "../../examples/resources/awscc_imagebuilder_lifecycle_policy/import.sh" + }, + { + "resource": "awscc_imagebuilder_workflow", + "identifier": "Arn", + "path": "../../examples/resources/awscc_imagebuilder_workflow/import.sh" + }, + { + "resource": "awscc_inspector_assessment_target", + "identifier": "Arn", + "path": "../../examples/resources/awscc_inspector_assessment_target/import.sh" + }, + { + "resource": "awscc_inspector_assessment_template", + "identifier": "Arn", + "path": "../../examples/resources/awscc_inspector_assessment_template/import.sh" + }, + { + "resource": "awscc_inspector_resource_group", + "identifier": "Arn", + "path": "../../examples/resources/awscc_inspector_resource_group/import.sh" + }, + { + "resource": "awscc_inspectorv2_cis_scan_configuration", + "identifier": "Arn", + "path": "../../examples/resources/awscc_inspectorv2_cis_scan_configuration/import.sh" + }, + { + "resource": "awscc_inspectorv2_filter", + "identifier": "Arn", + "path": "../../examples/resources/awscc_inspectorv2_filter/import.sh" + }, + { + "resource": "awscc_internetmonitor_monitor", + "identifier": "MonitorName", + "path": "../../examples/resources/awscc_internetmonitor_monitor/import.sh" + }, + { + "resource": "awscc_iot_account_audit_configuration", + "identifier": "AccountId", + "path": "../../examples/resources/awscc_iot_account_audit_configuration/import.sh" + }, + { + "resource": "awscc_iot_authorizer", + "identifier": "AuthorizerName", + "path": "../../examples/resources/awscc_iot_authorizer/import.sh" + }, + { + "resource": "awscc_iot_billing_group", + "identifier": "BillingGroupName", + "path": "../../examples/resources/awscc_iot_billing_group/import.sh" + }, + { + "resource": "awscc_iot_ca_certificate", + "identifier": "Id", + "path": "../../examples/resources/awscc_iot_ca_certificate/import.sh" + }, + { + "resource": "awscc_iot_certificate", + "identifier": "Id", + "path": "../../examples/resources/awscc_iot_certificate/import.sh" + }, + { + "resource": "awscc_iot_certificate_provider", + "identifier": "CertificateProviderName", + "path": "../../examples/resources/awscc_iot_certificate_provider/import.sh" + }, + { + "resource": "awscc_iot_custom_metric", + "identifier": "MetricName", + "path": "../../examples/resources/awscc_iot_custom_metric/import.sh" + }, + { + "resource": "awscc_iot_dimension", + "identifier": "Name", + "path": "../../examples/resources/awscc_iot_dimension/import.sh" + }, + { + "resource": "awscc_iot_domain_configuration", + "identifier": "DomainConfigurationName", + "path": "../../examples/resources/awscc_iot_domain_configuration/import.sh" + }, + { + "resource": "awscc_iot_fleet_metric", + "identifier": "MetricName", + "path": "../../examples/resources/awscc_iot_fleet_metric/import.sh" + }, + { + "resource": "awscc_iot_job_template", + "identifier": "JobTemplateId", + "path": "../../examples/resources/awscc_iot_job_template/import.sh" + }, + { + "resource": "awscc_iot_logging", + "identifier": "AccountId", + "path": "../../examples/resources/awscc_iot_logging/import.sh" + }, + { + "resource": "awscc_iot_mitigation_action", + "identifier": "ActionName", + "path": "../../examples/resources/awscc_iot_mitigation_action/import.sh" + }, + { + "resource": "awscc_iot_policy", + "identifier": "Id", + "path": "../../examples/resources/awscc_iot_policy/import.sh" + }, + { + "resource": "awscc_iot_provisioning_template", + "identifier": "TemplateName", + "path": "../../examples/resources/awscc_iot_provisioning_template/import.sh" + }, + { + "resource": "awscc_iot_resource_specific_logging", + "identifier": "TargetId", + "path": "../../examples/resources/awscc_iot_resource_specific_logging/import.sh" + }, + { + "resource": "awscc_iot_role_alias", + "identifier": "RoleAlias", + "path": "../../examples/resources/awscc_iot_role_alias/import.sh" + }, + { + "resource": "awscc_iot_scheduled_audit", + "identifier": "ScheduledAuditName", + "path": "../../examples/resources/awscc_iot_scheduled_audit/import.sh" + }, + { + "resource": "awscc_iot_security_profile", + "identifier": "SecurityProfileName", + "path": "../../examples/resources/awscc_iot_security_profile/import.sh" + }, + { + "resource": "awscc_iot_software_package", + "identifier": "PackageName", + "path": "../../examples/resources/awscc_iot_software_package/import.sh" + }, + { + "resource": "awscc_iot_software_package_version", + "identifier": "PackageName,VersionName", + "path": "../../examples/resources/awscc_iot_software_package_version/import.sh" + }, + { + "resource": "awscc_iot_thing", + "identifier": "ThingName", + "path": "../../examples/resources/awscc_iot_thing/import.sh" + }, + { + "resource": "awscc_iot_thing_group", + "identifier": "ThingGroupName", + "path": "../../examples/resources/awscc_iot_thing_group/import.sh" + }, + { + "resource": "awscc_iot_thing_type", + "identifier": "ThingTypeName", + "path": "../../examples/resources/awscc_iot_thing_type/import.sh" + }, + { + "resource": "awscc_iot_topic_rule", + "identifier": "RuleName", + "path": "../../examples/resources/awscc_iot_topic_rule/import.sh" + }, + { + "resource": "awscc_iot_topic_rule_destination", + "identifier": "Arn", + "path": "../../examples/resources/awscc_iot_topic_rule_destination/import.sh" + }, + { + "resource": "awscc_iotanalytics_channel", + "identifier": "ChannelName", + "path": "../../examples/resources/awscc_iotanalytics_channel/import.sh" + }, + { + "resource": "awscc_iotanalytics_dataset", + "identifier": "DatasetName", + "path": "../../examples/resources/awscc_iotanalytics_dataset/import.sh" + }, + { + "resource": "awscc_iotanalytics_datastore", + "identifier": "DatastoreName", + "path": "../../examples/resources/awscc_iotanalytics_datastore/import.sh" + }, + { + "resource": "awscc_iotanalytics_pipeline", + "identifier": "PipelineName", + "path": "../../examples/resources/awscc_iotanalytics_pipeline/import.sh" + }, + { + "resource": "awscc_iotcoredeviceadvisor_suite_definition", + "identifier": "SuiteDefinitionId", + "path": "../../examples/resources/awscc_iotcoredeviceadvisor_suite_definition/import.sh" + }, + { + "resource": "awscc_iotevents_alarm_model", + "identifier": "AlarmModelName", + "path": "../../examples/resources/awscc_iotevents_alarm_model/import.sh" + }, + { + "resource": "awscc_iotevents_detector_model", + "identifier": "DetectorModelName", + "path": "../../examples/resources/awscc_iotevents_detector_model/import.sh" + }, + { + "resource": "awscc_iotevents_input", + "identifier": "InputName", + "path": "../../examples/resources/awscc_iotevents_input/import.sh" + }, + { + "resource": "awscc_iotfleethub_application", + "identifier": "ApplicationId", + "path": "../../examples/resources/awscc_iotfleethub_application/import.sh" + }, + { + "resource": "awscc_iotfleetwise_campaign", + "identifier": "Name", + "path": "../../examples/resources/awscc_iotfleetwise_campaign/import.sh" + }, + { + "resource": "awscc_iotfleetwise_fleet", + "identifier": "Id", + "path": "../../examples/resources/awscc_iotfleetwise_fleet/import.sh" + }, + { + "resource": "awscc_iotfleetwise_model_manifest", + "identifier": "Name", + "path": "../../examples/resources/awscc_iotfleetwise_model_manifest/import.sh" + }, + { + "resource": "awscc_iotfleetwise_signal_catalog", + "identifier": "Name", + "path": "../../examples/resources/awscc_iotfleetwise_signal_catalog/import.sh" + }, + { + "resource": "awscc_iotfleetwise_vehicle", + "identifier": "Name", + "path": "../../examples/resources/awscc_iotfleetwise_vehicle/import.sh" + }, + { + "resource": "awscc_iotsitewise_access_policy", + "identifier": "AccessPolicyId", + "path": "../../examples/resources/awscc_iotsitewise_access_policy/import.sh" + }, + { + "resource": "awscc_iotsitewise_asset", + "identifier": "AssetId", + "path": "../../examples/resources/awscc_iotsitewise_asset/import.sh" + }, + { + "resource": "awscc_iotsitewise_asset_model", + "identifier": "AssetModelId", + "path": "../../examples/resources/awscc_iotsitewise_asset_model/import.sh" + }, + { + "resource": "awscc_iotsitewise_dashboard", + "identifier": "DashboardId", + "path": "../../examples/resources/awscc_iotsitewise_dashboard/import.sh" + }, + { + "resource": "awscc_iotsitewise_gateway", + "identifier": "GatewayId", + "path": "../../examples/resources/awscc_iotsitewise_gateway/import.sh" + }, + { + "resource": "awscc_iotsitewise_portal", + "identifier": "PortalId", + "path": "../../examples/resources/awscc_iotsitewise_portal/import.sh" + }, + { + "resource": "awscc_iotsitewise_project", + "identifier": "ProjectId", + "path": "../../examples/resources/awscc_iotsitewise_project/import.sh" + }, + { + "resource": "awscc_iottwinmaker_scene", + "identifier": "WorkspaceId,SceneId", + "path": "../../examples/resources/awscc_iottwinmaker_scene/import.sh" + }, + { + "resource": "awscc_iottwinmaker_sync_job", + "identifier": "WorkspaceId,SyncSource", + "path": "../../examples/resources/awscc_iottwinmaker_sync_job/import.sh" + }, + { + "resource": "awscc_iottwinmaker_workspace", + "identifier": "WorkspaceId", + "path": "../../examples/resources/awscc_iottwinmaker_workspace/import.sh" + }, + { + "resource": "awscc_iotwireless_destination", + "identifier": "Name", + "path": "../../examples/resources/awscc_iotwireless_destination/import.sh" + }, + { + "resource": "awscc_iotwireless_device_profile", + "identifier": "Id", + "path": "../../examples/resources/awscc_iotwireless_device_profile/import.sh" + }, + { + "resource": "awscc_iotwireless_fuota_task", + "identifier": "Id", + "path": "../../examples/resources/awscc_iotwireless_fuota_task/import.sh" + }, + { + "resource": "awscc_iotwireless_multicast_group", + "identifier": "Id", + "path": "../../examples/resources/awscc_iotwireless_multicast_group/import.sh" + }, + { + "resource": "awscc_iotwireless_network_analyzer_configuration", + "identifier": "Name", + "path": "../../examples/resources/awscc_iotwireless_network_analyzer_configuration/import.sh" + }, + { + "resource": "awscc_iotwireless_partner_account", + "identifier": "PartnerAccountId", + "path": "../../examples/resources/awscc_iotwireless_partner_account/import.sh" + }, + { + "resource": "awscc_iotwireless_service_profile", + "identifier": "Id", + "path": "../../examples/resources/awscc_iotwireless_service_profile/import.sh" + }, + { + "resource": "awscc_iotwireless_task_definition", + "identifier": "Id", + "path": "../../examples/resources/awscc_iotwireless_task_definition/import.sh" + }, + { + "resource": "awscc_iotwireless_wireless_device", + "identifier": "Id", + "path": "../../examples/resources/awscc_iotwireless_wireless_device/import.sh" + }, + { + "resource": "awscc_iotwireless_wireless_device_import_task", + "identifier": "Id", + "path": "../../examples/resources/awscc_iotwireless_wireless_device_import_task/import.sh" + }, + { + "resource": "awscc_iotwireless_wireless_gateway", + "identifier": "Id", + "path": "../../examples/resources/awscc_iotwireless_wireless_gateway/import.sh" + }, + { + "resource": "awscc_kms_alias", + "identifier": "AliasName", + "path": "../../examples/resources/awscc_kms_alias/import.sh" + }, + { + "resource": "awscc_kms_key", + "identifier": "KeyId", + "path": "../../examples/resources/awscc_kms_key/import.sh" + }, + { + "resource": "awscc_kms_replica_key", + "identifier": "KeyId", + "path": "../../examples/resources/awscc_kms_replica_key/import.sh" + }, + { + "resource": "awscc_kafkaconnect_connector", + "identifier": "ConnectorArn", + "path": "../../examples/resources/awscc_kafkaconnect_connector/import.sh" + }, + { + "resource": "awscc_kafkaconnect_custom_plugin", + "identifier": "CustomPluginArn", + "path": "../../examples/resources/awscc_kafkaconnect_custom_plugin/import.sh" + }, + { + "resource": "awscc_kafkaconnect_worker_configuration", + "identifier": "WorkerConfigurationArn", + "path": "../../examples/resources/awscc_kafkaconnect_worker_configuration/import.sh" + }, + { + "resource": "awscc_kendra_data_source", + "identifier": "Id,IndexId", + "path": "../../examples/resources/awscc_kendra_data_source/import.sh" + }, + { + "resource": "awscc_kendra_faq", + "identifier": "Id,IndexId", + "path": "../../examples/resources/awscc_kendra_faq/import.sh" + }, + { + "resource": "awscc_kendra_index", + "identifier": "Id", + "path": "../../examples/resources/awscc_kendra_index/import.sh" + }, + { + "resource": "awscc_kendraranking_execution_plan", + "identifier": "Id", + "path": "../../examples/resources/awscc_kendraranking_execution_plan/import.sh" + }, + { + "resource": "awscc_kinesis_stream", + "identifier": "Name", + "path": "../../examples/resources/awscc_kinesis_stream/import.sh" + }, + { + "resource": "awscc_kinesisanalyticsv2_application", + "identifier": "ApplicationName", + "path": "../../examples/resources/awscc_kinesisanalyticsv2_application/import.sh" + }, + { + "resource": "awscc_kinesisfirehose_delivery_stream", + "identifier": "DeliveryStreamName", + "path": "../../examples/resources/awscc_kinesisfirehose_delivery_stream/import.sh" + }, + { + "resource": "awscc_kinesisvideo_signaling_channel", + "identifier": "Name", + "path": "../../examples/resources/awscc_kinesisvideo_signaling_channel/import.sh" + }, + { + "resource": "awscc_kinesisvideo_stream", + "identifier": "Name", + "path": "../../examples/resources/awscc_kinesisvideo_stream/import.sh" + }, + { + "resource": "awscc_lakeformation_data_cells_filter", + "identifier": "TableCatalogId,DatabaseName,TableName,Name", + "path": "../../examples/resources/awscc_lakeformation_data_cells_filter/import.sh" + }, + { + "resource": "awscc_lakeformation_principal_permissions", + "identifier": "PrincipalIdentifier,ResourceIdentifier", + "path": "../../examples/resources/awscc_lakeformation_principal_permissions/import.sh" + }, + { + "resource": "awscc_lakeformation_tag", + "identifier": "TagKey", + "path": "../../examples/resources/awscc_lakeformation_tag/import.sh" + }, + { + "resource": "awscc_lakeformation_tag_association", + "identifier": "ResourceIdentifier,TagsIdentifier", + "path": "../../examples/resources/awscc_lakeformation_tag_association/import.sh" + }, + { + "resource": "awscc_lambda_alias", + "identifier": "AliasArn", + "path": "../../examples/resources/awscc_lambda_alias/import.sh" + }, + { + "resource": "awscc_lambda_code_signing_config", + "identifier": "CodeSigningConfigArn", + "path": "../../examples/resources/awscc_lambda_code_signing_config/import.sh" + }, + { + "resource": "awscc_lambda_event_invoke_config", + "identifier": "FunctionName,Qualifier", + "path": "../../examples/resources/awscc_lambda_event_invoke_config/import.sh" + }, + { + "resource": "awscc_lambda_event_source_mapping", + "identifier": "Id", + "path": "../../examples/resources/awscc_lambda_event_source_mapping/import.sh" + }, + { + "resource": "awscc_lambda_function", + "identifier": "FunctionName", + "path": "../../examples/resources/awscc_lambda_function/import.sh" + }, + { + "resource": "awscc_lambda_layer_version", + "identifier": "LayerVersionArn", + "path": "../../examples/resources/awscc_lambda_layer_version/import.sh" + }, + { + "resource": "awscc_lambda_layer_version_permission", + "identifier": "Id", + "path": "../../examples/resources/awscc_lambda_layer_version_permission/import.sh" + }, + { + "resource": "awscc_lambda_permission", + "identifier": "FunctionName,Id", + "path": "../../examples/resources/awscc_lambda_permission/import.sh" + }, + { + "resource": "awscc_lambda_url", + "identifier": "FunctionArn", + "path": "../../examples/resources/awscc_lambda_url/import.sh" + }, + { + "resource": "awscc_lambda_version", + "identifier": "FunctionArn", + "path": "../../examples/resources/awscc_lambda_version/import.sh" + }, + { + "resource": "awscc_launchwizard_deployment", + "identifier": "Arn", + "path": "../../examples/resources/awscc_launchwizard_deployment/import.sh" + }, + { + "resource": "awscc_lex_bot", + "identifier": "Id", + "path": "../../examples/resources/awscc_lex_bot/import.sh" + }, + { + "resource": "awscc_lex_bot_alias", + "identifier": "BotAliasId,BotId", + "path": "../../examples/resources/awscc_lex_bot_alias/import.sh" + }, + { + "resource": "awscc_lex_bot_version", + "identifier": "BotId,BotVersion", + "path": "../../examples/resources/awscc_lex_bot_version/import.sh" + }, + { + "resource": "awscc_lex_resource_policy", + "identifier": "Id", + "path": "../../examples/resources/awscc_lex_resource_policy/import.sh" + }, + { + "resource": "awscc_licensemanager_grant", + "identifier": "GrantArn", + "path": "../../examples/resources/awscc_licensemanager_grant/import.sh" + }, + { + "resource": "awscc_licensemanager_license", + "identifier": "LicenseArn", + "path": "../../examples/resources/awscc_licensemanager_license/import.sh" + }, + { + "resource": "awscc_lightsail_alarm", + "identifier": "AlarmName", + "path": "../../examples/resources/awscc_lightsail_alarm/import.sh" + }, + { + "resource": "awscc_lightsail_bucket", + "identifier": "BucketName", + "path": "../../examples/resources/awscc_lightsail_bucket/import.sh" + }, + { + "resource": "awscc_lightsail_certificate", + "identifier": "CertificateName", + "path": "../../examples/resources/awscc_lightsail_certificate/import.sh" + }, + { + "resource": "awscc_lightsail_container", + "identifier": "ServiceName", + "path": "../../examples/resources/awscc_lightsail_container/import.sh" + }, + { + "resource": "awscc_lightsail_database", + "identifier": "RelationalDatabaseName", + "path": "../../examples/resources/awscc_lightsail_database/import.sh" + }, + { + "resource": "awscc_lightsail_disk", + "identifier": "DiskName", + "path": "../../examples/resources/awscc_lightsail_disk/import.sh" + }, + { + "resource": "awscc_lightsail_distribution", + "identifier": "DistributionName", + "path": "../../examples/resources/awscc_lightsail_distribution/import.sh" + }, + { + "resource": "awscc_lightsail_instance", + "identifier": "InstanceName", + "path": "../../examples/resources/awscc_lightsail_instance/import.sh" + }, + { + "resource": "awscc_lightsail_load_balancer", + "identifier": "LoadBalancerName", + "path": "../../examples/resources/awscc_lightsail_load_balancer/import.sh" + }, + { + "resource": "awscc_lightsail_load_balancer_tls_certificate", + "identifier": "CertificateName,LoadBalancerName", + "path": "../../examples/resources/awscc_lightsail_load_balancer_tls_certificate/import.sh" + }, + { + "resource": "awscc_lightsail_static_ip", + "identifier": "StaticIpName", + "path": "../../examples/resources/awscc_lightsail_static_ip/import.sh" + }, + { + "resource": "awscc_location_api_key", + "identifier": "KeyName", + "path": "../../examples/resources/awscc_location_api_key/import.sh" + }, + { + "resource": "awscc_location_geofence_collection", + "identifier": "CollectionName", + "path": "../../examples/resources/awscc_location_geofence_collection/import.sh" + }, + { + "resource": "awscc_location_map", + "identifier": "MapName", + "path": "../../examples/resources/awscc_location_map/import.sh" + }, + { + "resource": "awscc_location_place_index", + "identifier": "IndexName", + "path": "../../examples/resources/awscc_location_place_index/import.sh" + }, + { + "resource": "awscc_location_route_calculator", + "identifier": "CalculatorName", + "path": "../../examples/resources/awscc_location_route_calculator/import.sh" + }, + { + "resource": "awscc_location_tracker", + "identifier": "TrackerName", + "path": "../../examples/resources/awscc_location_tracker/import.sh" + }, + { + "resource": "awscc_location_tracker_consumer", + "identifier": "TrackerName,ConsumerArn", + "path": "../../examples/resources/awscc_location_tracker_consumer/import.sh" + }, + { + "resource": "awscc_logs_account_policy", + "identifier": "AccountId,PolicyType,PolicyName", + "path": "../../examples/resources/awscc_logs_account_policy/import.sh" + }, + { + "resource": "awscc_logs_delivery", + "identifier": "DeliveryId", + "path": "../../examples/resources/awscc_logs_delivery/import.sh" + }, + { + "resource": "awscc_logs_delivery_destination", + "identifier": "Name", + "path": "../../examples/resources/awscc_logs_delivery_destination/import.sh" + }, + { + "resource": "awscc_logs_delivery_source", + "identifier": "Name", + "path": "../../examples/resources/awscc_logs_delivery_source/import.sh" + }, + { + "resource": "awscc_logs_destination", + "identifier": "DestinationName", + "path": "../../examples/resources/awscc_logs_destination/import.sh" + }, + { + "resource": "awscc_logs_log_anomaly_detector", + "identifier": "AnomalyDetectorArn", + "path": "../../examples/resources/awscc_logs_log_anomaly_detector/import.sh" + }, + { + "resource": "awscc_logs_log_group", + "identifier": "LogGroupName", + "path": "../../examples/resources/awscc_logs_log_group/import.sh" + }, + { + "resource": "awscc_logs_log_stream", + "identifier": "LogGroupName,LogStreamName", + "path": "../../examples/resources/awscc_logs_log_stream/import.sh" + }, + { + "resource": "awscc_logs_metric_filter", + "identifier": "LogGroupName,FilterName", + "path": "../../examples/resources/awscc_logs_metric_filter/import.sh" + }, + { + "resource": "awscc_logs_query_definition", + "identifier": "QueryDefinitionId", + "path": "../../examples/resources/awscc_logs_query_definition/import.sh" + }, + { + "resource": "awscc_logs_resource_policy", + "identifier": "PolicyName", + "path": "../../examples/resources/awscc_logs_resource_policy/import.sh" + }, + { + "resource": "awscc_logs_subscription_filter", + "identifier": "FilterName,LogGroupName", + "path": "../../examples/resources/awscc_logs_subscription_filter/import.sh" + }, + { + "resource": "awscc_lookoutequipment_inference_scheduler", + "identifier": "InferenceSchedulerName", + "path": "../../examples/resources/awscc_lookoutequipment_inference_scheduler/import.sh" + }, + { + "resource": "awscc_lookoutmetrics_alert", + "identifier": "Arn", + "path": "../../examples/resources/awscc_lookoutmetrics_alert/import.sh" + }, + { + "resource": "awscc_lookoutmetrics_anomaly_detector", + "identifier": "Arn", + "path": "../../examples/resources/awscc_lookoutmetrics_anomaly_detector/import.sh" + }, + { + "resource": "awscc_lookoutvision_project", + "identifier": "ProjectName", + "path": "../../examples/resources/awscc_lookoutvision_project/import.sh" + }, + { + "resource": "awscc_m2_application", + "identifier": "ApplicationArn", + "path": "../../examples/resources/awscc_m2_application/import.sh" + }, + { + "resource": "awscc_m2_environment", + "identifier": "EnvironmentArn", + "path": "../../examples/resources/awscc_m2_environment/import.sh" + }, + { + "resource": "awscc_msk_batch_scram_secret", + "identifier": "ClusterArn", + "path": "../../examples/resources/awscc_msk_batch_scram_secret/import.sh" + }, + { + "resource": "awscc_msk_cluster", + "identifier": "Arn", + "path": "../../examples/resources/awscc_msk_cluster/import.sh" + }, + { + "resource": "awscc_msk_cluster_policy", + "identifier": "ClusterArn", + "path": "../../examples/resources/awscc_msk_cluster_policy/import.sh" + }, + { + "resource": "awscc_msk_configuration", + "identifier": "Arn", + "path": "../../examples/resources/awscc_msk_configuration/import.sh" + }, + { + "resource": "awscc_msk_replicator", + "identifier": "ReplicatorArn", + "path": "../../examples/resources/awscc_msk_replicator/import.sh" + }, + { + "resource": "awscc_msk_serverless_cluster", + "identifier": "Arn", + "path": "../../examples/resources/awscc_msk_serverless_cluster/import.sh" + }, + { + "resource": "awscc_msk_vpc_connection", + "identifier": "Arn", + "path": "../../examples/resources/awscc_msk_vpc_connection/import.sh" + }, + { + "resource": "awscc_mwaa_environment", + "identifier": "Name", + "path": "../../examples/resources/awscc_mwaa_environment/import.sh" + }, + { + "resource": "awscc_macie_allow_list", + "identifier": "Id", + "path": "../../examples/resources/awscc_macie_allow_list/import.sh" + }, + { + "resource": "awscc_macie_custom_data_identifier", + "identifier": "Id", + "path": "../../examples/resources/awscc_macie_custom_data_identifier/import.sh" + }, + { + "resource": "awscc_macie_findings_filter", + "identifier": "Id", + "path": "../../examples/resources/awscc_macie_findings_filter/import.sh" + }, + { + "resource": "awscc_macie_session", + "identifier": "AwsAccountId", + "path": "../../examples/resources/awscc_macie_session/import.sh" + }, + { + "resource": "awscc_managedblockchain_accessor", + "identifier": "Id", + "path": "../../examples/resources/awscc_managedblockchain_accessor/import.sh" + }, + { + "resource": "awscc_mediaconnect_bridge", + "identifier": "BridgeArn", + "path": "../../examples/resources/awscc_mediaconnect_bridge/import.sh" + }, + { + "resource": "awscc_mediaconnect_bridge_output", + "identifier": "BridgeArn,Name", + "path": "../../examples/resources/awscc_mediaconnect_bridge_output/import.sh" + }, + { + "resource": "awscc_mediaconnect_bridge_source", + "identifier": "BridgeArn,Name", + "path": "../../examples/resources/awscc_mediaconnect_bridge_source/import.sh" + }, + { + "resource": "awscc_mediaconnect_flow", + "identifier": "FlowArn", + "path": "../../examples/resources/awscc_mediaconnect_flow/import.sh" + }, + { + "resource": "awscc_mediaconnect_flow_entitlement", + "identifier": "EntitlementArn", + "path": "../../examples/resources/awscc_mediaconnect_flow_entitlement/import.sh" + }, + { + "resource": "awscc_mediaconnect_flow_output", + "identifier": "OutputArn", + "path": "../../examples/resources/awscc_mediaconnect_flow_output/import.sh" + }, + { + "resource": "awscc_mediaconnect_flow_source", + "identifier": "SourceArn", + "path": "../../examples/resources/awscc_mediaconnect_flow_source/import.sh" + }, + { + "resource": "awscc_mediaconnect_flow_vpc_interface", + "identifier": "FlowArn,Name", + "path": "../../examples/resources/awscc_mediaconnect_flow_vpc_interface/import.sh" + }, + { + "resource": "awscc_mediaconnect_gateway", + "identifier": "GatewayArn", + "path": "../../examples/resources/awscc_mediaconnect_gateway/import.sh" + }, + { + "resource": "awscc_medialive_multiplex", + "identifier": "Id", + "path": "../../examples/resources/awscc_medialive_multiplex/import.sh" + }, + { + "resource": "awscc_medialive_multiplexprogram", + "identifier": "ProgramName,MultiplexId", + "path": "../../examples/resources/awscc_medialive_multiplexprogram/import.sh" + }, + { + "resource": "awscc_mediapackage_asset", + "identifier": "Id", + "path": "../../examples/resources/awscc_mediapackage_asset/import.sh" + }, + { + "resource": "awscc_mediapackage_channel", + "identifier": "Id", + "path": "../../examples/resources/awscc_mediapackage_channel/import.sh" + }, + { + "resource": "awscc_mediapackage_origin_endpoint", + "identifier": "Id", + "path": "../../examples/resources/awscc_mediapackage_origin_endpoint/import.sh" + }, + { + "resource": "awscc_mediapackage_packaging_configuration", + "identifier": "Id", + "path": "../../examples/resources/awscc_mediapackage_packaging_configuration/import.sh" + }, + { + "resource": "awscc_mediapackage_packaging_group", + "identifier": "Id", + "path": "../../examples/resources/awscc_mediapackage_packaging_group/import.sh" + }, + { + "resource": "awscc_mediapackagev2_channel", + "identifier": "Arn", + "path": "../../examples/resources/awscc_mediapackagev2_channel/import.sh" + }, + { + "resource": "awscc_mediapackagev2_channel_group", + "identifier": "Arn", + "path": "../../examples/resources/awscc_mediapackagev2_channel_group/import.sh" + }, + { + "resource": "awscc_mediapackagev2_channel_policy", + "identifier": "ChannelGroupName,ChannelName", + "path": "../../examples/resources/awscc_mediapackagev2_channel_policy/import.sh" + }, + { + "resource": "awscc_mediapackagev2_origin_endpoint", + "identifier": "Arn", + "path": "../../examples/resources/awscc_mediapackagev2_origin_endpoint/import.sh" + }, + { + "resource": "awscc_mediapackagev2_origin_endpoint_policy", + "identifier": "ChannelGroupName,ChannelName,OriginEndpointName", + "path": "../../examples/resources/awscc_mediapackagev2_origin_endpoint_policy/import.sh" + }, + { + "resource": "awscc_mediatailor_channel", + "identifier": "ChannelName", + "path": "../../examples/resources/awscc_mediatailor_channel/import.sh" + }, + { + "resource": "awscc_mediatailor_channel_policy", + "identifier": "ChannelName", + "path": "../../examples/resources/awscc_mediatailor_channel_policy/import.sh" + }, + { + "resource": "awscc_mediatailor_live_source", + "identifier": "LiveSourceName,SourceLocationName", + "path": "../../examples/resources/awscc_mediatailor_live_source/import.sh" + }, + { + "resource": "awscc_mediatailor_source_location", + "identifier": "SourceLocationName", + "path": "../../examples/resources/awscc_mediatailor_source_location/import.sh" + }, + { + "resource": "awscc_mediatailor_vod_source", + "identifier": "SourceLocationName,VodSourceName", + "path": "../../examples/resources/awscc_mediatailor_vod_source/import.sh" + }, + { + "resource": "awscc_memorydb_acl", + "identifier": "ACLName", + "path": "../../examples/resources/awscc_memorydb_acl/import.sh" + }, + { + "resource": "awscc_memorydb_cluster", + "identifier": "ClusterName", + "path": "../../examples/resources/awscc_memorydb_cluster/import.sh" + }, + { + "resource": "awscc_memorydb_parameter_group", + "identifier": "ParameterGroupName", + "path": "../../examples/resources/awscc_memorydb_parameter_group/import.sh" + }, + { + "resource": "awscc_memorydb_subnet_group", + "identifier": "SubnetGroupName", + "path": "../../examples/resources/awscc_memorydb_subnet_group/import.sh" + }, + { + "resource": "awscc_memorydb_user", + "identifier": "UserName", + "path": "../../examples/resources/awscc_memorydb_user/import.sh" + }, + { + "resource": "awscc_neptune_db_cluster", + "identifier": "DBClusterIdentifier", + "path": "../../examples/resources/awscc_neptune_db_cluster/import.sh" + }, + { + "resource": "awscc_neptunegraph_graph", + "identifier": "GraphId", + "path": "../../examples/resources/awscc_neptunegraph_graph/import.sh" + }, + { + "resource": "awscc_neptunegraph_private_graph_endpoint", + "identifier": "PrivateGraphEndpointIdentifier", + "path": "../../examples/resources/awscc_neptunegraph_private_graph_endpoint/import.sh" + }, + { + "resource": "awscc_networkfirewall_firewall", + "identifier": "FirewallArn", + "path": "../../examples/resources/awscc_networkfirewall_firewall/import.sh" + }, + { + "resource": "awscc_networkfirewall_firewall_policy", + "identifier": "FirewallPolicyArn", + "path": "../../examples/resources/awscc_networkfirewall_firewall_policy/import.sh" + }, + { + "resource": "awscc_networkfirewall_logging_configuration", + "identifier": "FirewallArn", + "path": "../../examples/resources/awscc_networkfirewall_logging_configuration/import.sh" + }, + { + "resource": "awscc_networkfirewall_rule_group", + "identifier": "RuleGroupArn", + "path": "../../examples/resources/awscc_networkfirewall_rule_group/import.sh" + }, + { + "resource": "awscc_networkfirewall_tls_inspection_configuration", + "identifier": "TLSInspectionConfigurationArn", + "path": "../../examples/resources/awscc_networkfirewall_tls_inspection_configuration/import.sh" + }, + { + "resource": "awscc_networkmanager_connect_attachment", + "identifier": "AttachmentId", + "path": "../../examples/resources/awscc_networkmanager_connect_attachment/import.sh" + }, + { + "resource": "awscc_networkmanager_connect_peer", + "identifier": "ConnectPeerId", + "path": "../../examples/resources/awscc_networkmanager_connect_peer/import.sh" + }, + { + "resource": "awscc_networkmanager_core_network", + "identifier": "CoreNetworkId", + "path": "../../examples/resources/awscc_networkmanager_core_network/import.sh" + }, + { + "resource": "awscc_networkmanager_customer_gateway_association", + "identifier": "GlobalNetworkId,CustomerGatewayArn", + "path": "../../examples/resources/awscc_networkmanager_customer_gateway_association/import.sh" + }, + { + "resource": "awscc_networkmanager_device", + "identifier": "GlobalNetworkId,DeviceId", + "path": "../../examples/resources/awscc_networkmanager_device/import.sh" + }, + { + "resource": "awscc_networkmanager_global_network", + "identifier": "Id", + "path": "../../examples/resources/awscc_networkmanager_global_network/import.sh" + }, + { + "resource": "awscc_networkmanager_link", + "identifier": "GlobalNetworkId,LinkId", + "path": "../../examples/resources/awscc_networkmanager_link/import.sh" + }, + { + "resource": "awscc_networkmanager_link_association", + "identifier": "GlobalNetworkId,DeviceId,LinkId", + "path": "../../examples/resources/awscc_networkmanager_link_association/import.sh" + }, + { + "resource": "awscc_networkmanager_site", + "identifier": "GlobalNetworkId,SiteId", + "path": "../../examples/resources/awscc_networkmanager_site/import.sh" + }, + { + "resource": "awscc_networkmanager_site_to_site_vpn_attachment", + "identifier": "AttachmentId", + "path": "../../examples/resources/awscc_networkmanager_site_to_site_vpn_attachment/import.sh" + }, + { + "resource": "awscc_networkmanager_transit_gateway_peering", + "identifier": "PeeringId", + "path": "../../examples/resources/awscc_networkmanager_transit_gateway_peering/import.sh" + }, + { + "resource": "awscc_networkmanager_transit_gateway_registration", + "identifier": "GlobalNetworkId,TransitGatewayArn", + "path": "../../examples/resources/awscc_networkmanager_transit_gateway_registration/import.sh" + }, + { + "resource": "awscc_networkmanager_transit_gateway_route_table_attachment", + "identifier": "AttachmentId", + "path": "../../examples/resources/awscc_networkmanager_transit_gateway_route_table_attachment/import.sh" + }, + { + "resource": "awscc_networkmanager_vpc_attachment", + "identifier": "AttachmentId", + "path": "../../examples/resources/awscc_networkmanager_vpc_attachment/import.sh" + }, + { + "resource": "awscc_nimblestudio_launch_profile", + "identifier": "LaunchProfileId,StudioId", + "path": "../../examples/resources/awscc_nimblestudio_launch_profile/import.sh" + }, + { + "resource": "awscc_nimblestudio_streaming_image", + "identifier": "StudioId,StreamingImageId", + "path": "../../examples/resources/awscc_nimblestudio_streaming_image/import.sh" + }, + { + "resource": "awscc_nimblestudio_studio", + "identifier": "StudioId", + "path": "../../examples/resources/awscc_nimblestudio_studio/import.sh" + }, + { + "resource": "awscc_nimblestudio_studio_component", + "identifier": "StudioComponentId,StudioId", + "path": "../../examples/resources/awscc_nimblestudio_studio_component/import.sh" + }, + { + "resource": "awscc_osis_pipeline", + "identifier": "PipelineArn", + "path": "../../examples/resources/awscc_osis_pipeline/import.sh" + }, + { + "resource": "awscc_oam_link", + "identifier": "Arn", + "path": "../../examples/resources/awscc_oam_link/import.sh" + }, + { + "resource": "awscc_oam_sink", + "identifier": "Arn", + "path": "../../examples/resources/awscc_oam_sink/import.sh" + }, + { + "resource": "awscc_omics_reference_store", + "identifier": "ReferenceStoreId", + "path": "../../examples/resources/awscc_omics_reference_store/import.sh" + }, + { + "resource": "awscc_omics_run_group", + "identifier": "Id", + "path": "../../examples/resources/awscc_omics_run_group/import.sh" + }, + { + "resource": "awscc_omics_sequence_store", + "identifier": "SequenceStoreId", + "path": "../../examples/resources/awscc_omics_sequence_store/import.sh" + }, + { + "resource": "awscc_omics_variant_store", + "identifier": "Name", + "path": "../../examples/resources/awscc_omics_variant_store/import.sh" + }, + { + "resource": "awscc_omics_workflow", + "identifier": "Id", + "path": "../../examples/resources/awscc_omics_workflow/import.sh" + }, + { + "resource": "awscc_opensearchserverless_access_policy", + "identifier": "Type,Name", + "path": "../../examples/resources/awscc_opensearchserverless_access_policy/import.sh" + }, + { + "resource": "awscc_opensearchserverless_collection", + "identifier": "Id", + "path": "../../examples/resources/awscc_opensearchserverless_collection/import.sh" + }, + { + "resource": "awscc_opensearchserverless_lifecycle_policy", + "identifier": "Type,Name", + "path": "../../examples/resources/awscc_opensearchserverless_lifecycle_policy/import.sh" + }, + { + "resource": "awscc_opensearchserverless_security_config", + "identifier": "Id", + "path": "../../examples/resources/awscc_opensearchserverless_security_config/import.sh" + }, + { + "resource": "awscc_opensearchserverless_security_policy", + "identifier": "Type,Name", + "path": "../../examples/resources/awscc_opensearchserverless_security_policy/import.sh" + }, + { + "resource": "awscc_opensearchserverless_vpc_endpoint", + "identifier": "Id", + "path": "../../examples/resources/awscc_opensearchserverless_vpc_endpoint/import.sh" + }, + { + "resource": "awscc_opensearchservice_domain", + "identifier": "DomainName", + "path": "../../examples/resources/awscc_opensearchservice_domain/import.sh" + }, + { + "resource": "awscc_opsworkscm_server", + "identifier": "ServerName", + "path": "../../examples/resources/awscc_opsworkscm_server/import.sh" + }, + { + "resource": "awscc_organizations_account", + "identifier": "AccountId", + "path": "../../examples/resources/awscc_organizations_account/import.sh" + }, + { + "resource": "awscc_organizations_organization", + "identifier": "Id", + "path": "../../examples/resources/awscc_organizations_organization/import.sh" + }, + { + "resource": "awscc_organizations_organizational_unit", + "identifier": "Id", + "path": "../../examples/resources/awscc_organizations_organizational_unit/import.sh" + }, + { + "resource": "awscc_organizations_policy", + "identifier": "Id", + "path": "../../examples/resources/awscc_organizations_policy/import.sh" + }, + { + "resource": "awscc_organizations_resource_policy", + "identifier": "Id", + "path": "../../examples/resources/awscc_organizations_resource_policy/import.sh" + }, + { + "resource": "awscc_pcaconnectorad_connector", + "identifier": "ConnectorArn", + "path": "../../examples/resources/awscc_pcaconnectorad_connector/import.sh" + }, + { + "resource": "awscc_pcaconnectorad_directory_registration", + "identifier": "DirectoryRegistrationArn", + "path": "../../examples/resources/awscc_pcaconnectorad_directory_registration/import.sh" + }, + { + "resource": "awscc_pcaconnectorad_service_principal_name", + "identifier": "ConnectorArn,DirectoryRegistrationArn", + "path": "../../examples/resources/awscc_pcaconnectorad_service_principal_name/import.sh" + }, + { + "resource": "awscc_pcaconnectorad_template", + "identifier": "TemplateArn", + "path": "../../examples/resources/awscc_pcaconnectorad_template/import.sh" + }, + { + "resource": "awscc_pcaconnectorad_template_group_access_control_entry", + "identifier": "GroupSecurityIdentifier,TemplateArn", + "path": "../../examples/resources/awscc_pcaconnectorad_template_group_access_control_entry/import.sh" + }, + { + "resource": "awscc_panorama_application_instance", + "identifier": "ApplicationInstanceId", + "path": "../../examples/resources/awscc_panorama_application_instance/import.sh" + }, + { + "resource": "awscc_panorama_package", + "identifier": "PackageId", + "path": "../../examples/resources/awscc_panorama_package/import.sh" + }, + { + "resource": "awscc_panorama_package_version", + "identifier": "PackageId,PackageVersion,PatchVersion", + "path": "../../examples/resources/awscc_panorama_package_version/import.sh" + }, + { + "resource": "awscc_paymentcryptography_alias", + "identifier": "AliasName", + "path": "../../examples/resources/awscc_paymentcryptography_alias/import.sh" + }, + { + "resource": "awscc_paymentcryptography_key", + "identifier": "KeyIdentifier", + "path": "../../examples/resources/awscc_paymentcryptography_key/import.sh" + }, + { + "resource": "awscc_personalize_dataset", + "identifier": "DatasetArn", + "path": "../../examples/resources/awscc_personalize_dataset/import.sh" + }, + { + "resource": "awscc_personalize_dataset_group", + "identifier": "DatasetGroupArn", + "path": "../../examples/resources/awscc_personalize_dataset_group/import.sh" + }, + { + "resource": "awscc_personalize_schema", + "identifier": "SchemaArn", + "path": "../../examples/resources/awscc_personalize_schema/import.sh" + }, + { + "resource": "awscc_personalize_solution", + "identifier": "SolutionArn", + "path": "../../examples/resources/awscc_personalize_solution/import.sh" + }, + { + "resource": "awscc_pinpoint_in_app_template", + "identifier": "TemplateName", + "path": "../../examples/resources/awscc_pinpoint_in_app_template/import.sh" + }, + { + "resource": "awscc_pipes_pipe", + "identifier": "Name", + "path": "../../examples/resources/awscc_pipes_pipe/import.sh" + }, + { + "resource": "awscc_proton_environment_account_connection", + "identifier": "Arn", + "path": "../../examples/resources/awscc_proton_environment_account_connection/import.sh" + }, + { + "resource": "awscc_proton_environment_template", + "identifier": "Arn", + "path": "../../examples/resources/awscc_proton_environment_template/import.sh" + }, + { + "resource": "awscc_proton_service_template", + "identifier": "Arn", + "path": "../../examples/resources/awscc_proton_service_template/import.sh" + }, + { + "resource": "awscc_qbusiness_application", + "identifier": "ApplicationId", + "path": "../../examples/resources/awscc_qbusiness_application/import.sh" + }, + { + "resource": "awscc_qbusiness_data_source", + "identifier": "ApplicationId,DataSourceId,IndexId", + "path": "../../examples/resources/awscc_qbusiness_data_source/import.sh" + }, + { + "resource": "awscc_qbusiness_index", + "identifier": "ApplicationId,IndexId", + "path": "../../examples/resources/awscc_qbusiness_index/import.sh" + }, + { + "resource": "awscc_qbusiness_plugin", + "identifier": "ApplicationId,PluginId", + "path": "../../examples/resources/awscc_qbusiness_plugin/import.sh" + }, + { + "resource": "awscc_qbusiness_retriever", + "identifier": "ApplicationId,RetrieverId", + "path": "../../examples/resources/awscc_qbusiness_retriever/import.sh" + }, + { + "resource": "awscc_qbusiness_web_experience", + "identifier": "ApplicationId,WebExperienceId", + "path": "../../examples/resources/awscc_qbusiness_web_experience/import.sh" + }, + { + "resource": "awscc_qldb_stream", + "identifier": "LedgerName,Id", + "path": "../../examples/resources/awscc_qldb_stream/import.sh" + }, + { + "resource": "awscc_quicksight_analysis", + "identifier": "AnalysisId,AwsAccountId", + "path": "../../examples/resources/awscc_quicksight_analysis/import.sh" + }, + { + "resource": "awscc_quicksight_dashboard", + "identifier": "AwsAccountId,DashboardId", + "path": "../../examples/resources/awscc_quicksight_dashboard/import.sh" + }, + { + "resource": "awscc_quicksight_data_set", + "identifier": "AwsAccountId,DataSetId", + "path": "../../examples/resources/awscc_quicksight_data_set/import.sh" + }, + { + "resource": "awscc_quicksight_data_source", + "identifier": "AwsAccountId,DataSourceId", + "path": "../../examples/resources/awscc_quicksight_data_source/import.sh" + }, + { + "resource": "awscc_quicksight_refresh_schedule", + "identifier": "AwsAccountId,DataSetId,Schedule/ScheduleId", + "path": "../../examples/resources/awscc_quicksight_refresh_schedule/import.sh" + }, + { + "resource": "awscc_quicksight_template", + "identifier": "AwsAccountId,TemplateId", + "path": "../../examples/resources/awscc_quicksight_template/import.sh" + }, + { + "resource": "awscc_quicksight_theme", + "identifier": "ThemeId,AwsAccountId", + "path": "../../examples/resources/awscc_quicksight_theme/import.sh" + }, + { + "resource": "awscc_quicksight_topic", + "identifier": "AwsAccountId,TopicId", + "path": "../../examples/resources/awscc_quicksight_topic/import.sh" + }, + { + "resource": "awscc_quicksight_vpc_connection", + "identifier": "AwsAccountId,VPCConnectionId", + "path": "../../examples/resources/awscc_quicksight_vpc_connection/import.sh" + }, + { + "resource": "awscc_ram_permission", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ram_permission/import.sh" + }, + { + "resource": "awscc_rds_custom_db_engine_version", + "identifier": "Engine,EngineVersion", + "path": "../../examples/resources/awscc_rds_custom_db_engine_version/import.sh" + }, + { + "resource": "awscc_rds_db_cluster", + "identifier": "DBClusterIdentifier", + "path": "../../examples/resources/awscc_rds_db_cluster/import.sh" + }, + { + "resource": "awscc_rds_db_cluster_parameter_group", + "identifier": "DBClusterParameterGroupName", + "path": "../../examples/resources/awscc_rds_db_cluster_parameter_group/import.sh" + }, + { + "resource": "awscc_rds_db_instance", + "identifier": "DBInstanceIdentifier", + "path": "../../examples/resources/awscc_rds_db_instance/import.sh" + }, + { + "resource": "awscc_rds_db_parameter_group", + "identifier": "DBParameterGroupName", + "path": "../../examples/resources/awscc_rds_db_parameter_group/import.sh" + }, + { + "resource": "awscc_rds_db_proxy", + "identifier": "DBProxyName", + "path": "../../examples/resources/awscc_rds_db_proxy/import.sh" + }, + { + "resource": "awscc_rds_db_proxy_endpoint", + "identifier": "DBProxyEndpointName", + "path": "../../examples/resources/awscc_rds_db_proxy_endpoint/import.sh" + }, + { + "resource": "awscc_rds_db_proxy_target_group", + "identifier": "TargetGroupArn", + "path": "../../examples/resources/awscc_rds_db_proxy_target_group/import.sh" + }, + { + "resource": "awscc_rds_db_subnet_group", + "identifier": "DBSubnetGroupName", + "path": "../../examples/resources/awscc_rds_db_subnet_group/import.sh" + }, + { + "resource": "awscc_rds_event_subscription", + "identifier": "SubscriptionName", + "path": "../../examples/resources/awscc_rds_event_subscription/import.sh" + }, + { + "resource": "awscc_rds_global_cluster", + "identifier": "GlobalClusterIdentifier", + "path": "../../examples/resources/awscc_rds_global_cluster/import.sh" + }, + { + "resource": "awscc_rds_integration", + "identifier": "IntegrationArn", + "path": "../../examples/resources/awscc_rds_integration/import.sh" + }, + { + "resource": "awscc_rds_option_group", + "identifier": "OptionGroupName", + "path": "../../examples/resources/awscc_rds_option_group/import.sh" + }, + { + "resource": "awscc_rum_app_monitor", + "identifier": "Name", + "path": "../../examples/resources/awscc_rum_app_monitor/import.sh" + }, + { + "resource": "awscc_redshift_cluster", + "identifier": "ClusterIdentifier", + "path": "../../examples/resources/awscc_redshift_cluster/import.sh" + }, + { + "resource": "awscc_redshift_cluster_parameter_group", + "identifier": "ParameterGroupName", + "path": "../../examples/resources/awscc_redshift_cluster_parameter_group/import.sh" + }, + { + "resource": "awscc_redshift_cluster_subnet_group", + "identifier": "ClusterSubnetGroupName", + "path": "../../examples/resources/awscc_redshift_cluster_subnet_group/import.sh" + }, + { + "resource": "awscc_redshift_endpoint_access", + "identifier": "EndpointName", + "path": "../../examples/resources/awscc_redshift_endpoint_access/import.sh" + }, + { + "resource": "awscc_redshift_endpoint_authorization", + "identifier": "ClusterIdentifier,Account", + "path": "../../examples/resources/awscc_redshift_endpoint_authorization/import.sh" + }, + { + "resource": "awscc_redshift_event_subscription", + "identifier": "SubscriptionName", + "path": "../../examples/resources/awscc_redshift_event_subscription/import.sh" + }, + { + "resource": "awscc_redshift_scheduled_action", + "identifier": "ScheduledActionName", + "path": "../../examples/resources/awscc_redshift_scheduled_action/import.sh" + }, + { + "resource": "awscc_redshiftserverless_namespace", + "identifier": "NamespaceName", + "path": "../../examples/resources/awscc_redshiftserverless_namespace/import.sh" + }, + { + "resource": "awscc_redshiftserverless_workgroup", + "identifier": "WorkgroupName", + "path": "../../examples/resources/awscc_redshiftserverless_workgroup/import.sh" + }, + { + "resource": "awscc_refactorspaces_application", + "identifier": "EnvironmentIdentifier,ApplicationIdentifier", + "path": "../../examples/resources/awscc_refactorspaces_application/import.sh" + }, + { + "resource": "awscc_refactorspaces_environment", + "identifier": "EnvironmentIdentifier", + "path": "../../examples/resources/awscc_refactorspaces_environment/import.sh" + }, + { + "resource": "awscc_refactorspaces_route", + "identifier": "EnvironmentIdentifier,ApplicationIdentifier,RouteIdentifier", + "path": "../../examples/resources/awscc_refactorspaces_route/import.sh" + }, + { + "resource": "awscc_refactorspaces_service", + "identifier": "EnvironmentIdentifier,ApplicationIdentifier,ServiceIdentifier", + "path": "../../examples/resources/awscc_refactorspaces_service/import.sh" + }, + { + "resource": "awscc_rekognition_collection", + "identifier": "CollectionId", + "path": "../../examples/resources/awscc_rekognition_collection/import.sh" + }, + { + "resource": "awscc_rekognition_project", + "identifier": "ProjectName", + "path": "../../examples/resources/awscc_rekognition_project/import.sh" + }, + { + "resource": "awscc_resiliencehub_app", + "identifier": "AppArn", + "path": "../../examples/resources/awscc_resiliencehub_app/import.sh" + }, + { + "resource": "awscc_resiliencehub_resiliency_policy", + "identifier": "PolicyArn", + "path": "../../examples/resources/awscc_resiliencehub_resiliency_policy/import.sh" + }, + { + "resource": "awscc_resourceexplorer2_default_view_association", + "identifier": "AssociatedAwsPrincipal", + "path": "../../examples/resources/awscc_resourceexplorer2_default_view_association/import.sh" + }, + { + "resource": "awscc_resourceexplorer2_index", + "identifier": "Arn", + "path": "../../examples/resources/awscc_resourceexplorer2_index/import.sh" + }, + { + "resource": "awscc_resourceexplorer2_view", + "identifier": "ViewArn", + "path": "../../examples/resources/awscc_resourceexplorer2_view/import.sh" + }, + { + "resource": "awscc_resourcegroups_group", + "identifier": "Name", + "path": "../../examples/resources/awscc_resourcegroups_group/import.sh" + }, + { + "resource": "awscc_robomaker_fleet", + "identifier": "Arn", + "path": "../../examples/resources/awscc_robomaker_fleet/import.sh" + }, + { + "resource": "awscc_robomaker_robot", + "identifier": "Arn", + "path": "../../examples/resources/awscc_robomaker_robot/import.sh" + }, + { + "resource": "awscc_robomaker_robot_application", + "identifier": "Arn", + "path": "../../examples/resources/awscc_robomaker_robot_application/import.sh" + }, + { + "resource": "awscc_robomaker_robot_application_version", + "identifier": "Arn", + "path": "../../examples/resources/awscc_robomaker_robot_application_version/import.sh" + }, + { + "resource": "awscc_robomaker_simulation_application", + "identifier": "Arn", + "path": "../../examples/resources/awscc_robomaker_simulation_application/import.sh" + }, + { + "resource": "awscc_robomaker_simulation_application_version", + "identifier": "Arn", + "path": "../../examples/resources/awscc_robomaker_simulation_application_version/import.sh" + }, + { + "resource": "awscc_rolesanywhere_crl", + "identifier": "CrlId", + "path": "../../examples/resources/awscc_rolesanywhere_crl/import.sh" + }, + { + "resource": "awscc_rolesanywhere_profile", + "identifier": "ProfileId", + "path": "../../examples/resources/awscc_rolesanywhere_profile/import.sh" + }, + { + "resource": "awscc_rolesanywhere_trust_anchor", + "identifier": "TrustAnchorId", + "path": "../../examples/resources/awscc_rolesanywhere_trust_anchor/import.sh" + }, + { + "resource": "awscc_route53_cidr_collection", + "identifier": "Id", + "path": "../../examples/resources/awscc_route53_cidr_collection/import.sh" + }, + { + "resource": "awscc_route53_dnssec", + "identifier": "HostedZoneId", + "path": "../../examples/resources/awscc_route53_dnssec/import.sh" + }, + { + "resource": "awscc_route53_health_check", + "identifier": "HealthCheckId", + "path": "../../examples/resources/awscc_route53_health_check/import.sh" + }, + { + "resource": "awscc_route53_hosted_zone", + "identifier": "Id", + "path": "../../examples/resources/awscc_route53_hosted_zone/import.sh" + }, + { + "resource": "awscc_route53_key_signing_key", + "identifier": "HostedZoneId,Name", + "path": "../../examples/resources/awscc_route53_key_signing_key/import.sh" + }, + { + "resource": "awscc_route53profiles_profile", + "identifier": "Id", + "path": "../../examples/resources/awscc_route53profiles_profile/import.sh" + }, + { + "resource": "awscc_route53profiles_profile_association", + "identifier": "Id", + "path": "../../examples/resources/awscc_route53profiles_profile_association/import.sh" + }, + { + "resource": "awscc_route53profiles_profile_resource_association", + "identifier": "Id", + "path": "../../examples/resources/awscc_route53profiles_profile_resource_association/import.sh" + }, + { + "resource": "awscc_route53recoverycontrol_cluster", + "identifier": "ClusterArn", + "path": "../../examples/resources/awscc_route53recoverycontrol_cluster/import.sh" + }, + { + "resource": "awscc_route53recoverycontrol_control_panel", + "identifier": "ControlPanelArn", + "path": "../../examples/resources/awscc_route53recoverycontrol_control_panel/import.sh" + }, + { + "resource": "awscc_route53recoverycontrol_routing_control", + "identifier": "RoutingControlArn", + "path": "../../examples/resources/awscc_route53recoverycontrol_routing_control/import.sh" + }, + { + "resource": "awscc_route53recoverycontrol_safety_rule", + "identifier": "SafetyRuleArn", + "path": "../../examples/resources/awscc_route53recoverycontrol_safety_rule/import.sh" + }, + { + "resource": "awscc_route53recoveryreadiness_cell", + "identifier": "CellName", + "path": "../../examples/resources/awscc_route53recoveryreadiness_cell/import.sh" + }, + { + "resource": "awscc_route53recoveryreadiness_readiness_check", + "identifier": "ReadinessCheckName", + "path": "../../examples/resources/awscc_route53recoveryreadiness_readiness_check/import.sh" + }, + { + "resource": "awscc_route53recoveryreadiness_recovery_group", + "identifier": "RecoveryGroupName", + "path": "../../examples/resources/awscc_route53recoveryreadiness_recovery_group/import.sh" + }, + { + "resource": "awscc_route53recoveryreadiness_resource_set", + "identifier": "ResourceSetName", + "path": "../../examples/resources/awscc_route53recoveryreadiness_resource_set/import.sh" + }, + { + "resource": "awscc_route53resolver_firewall_domain_list", + "identifier": "Id", + "path": "../../examples/resources/awscc_route53resolver_firewall_domain_list/import.sh" + }, + { + "resource": "awscc_route53resolver_firewall_rule_group", + "identifier": "Id", + "path": "../../examples/resources/awscc_route53resolver_firewall_rule_group/import.sh" + }, + { + "resource": "awscc_route53resolver_firewall_rule_group_association", + "identifier": "Id", + "path": "../../examples/resources/awscc_route53resolver_firewall_rule_group_association/import.sh" + }, + { + "resource": "awscc_route53resolver_outpost_resolver", + "identifier": "Id", + "path": "../../examples/resources/awscc_route53resolver_outpost_resolver/import.sh" + }, + { + "resource": "awscc_route53resolver_resolver_config", + "identifier": "ResourceId", + "path": "../../examples/resources/awscc_route53resolver_resolver_config/import.sh" + }, + { + "resource": "awscc_route53resolver_resolver_dnssec_config", + "identifier": "Id", + "path": "../../examples/resources/awscc_route53resolver_resolver_dnssec_config/import.sh" + }, + { + "resource": "awscc_route53resolver_resolver_query_logging_config", + "identifier": "Id", + "path": "../../examples/resources/awscc_route53resolver_resolver_query_logging_config/import.sh" + }, + { + "resource": "awscc_route53resolver_resolver_query_logging_config_association", + "identifier": "Id", + "path": "../../examples/resources/awscc_route53resolver_resolver_query_logging_config_association/import.sh" + }, + { + "resource": "awscc_route53resolver_resolver_rule", + "identifier": "ResolverRuleId", + "path": "../../examples/resources/awscc_route53resolver_resolver_rule/import.sh" + }, + { + "resource": "awscc_route53resolver_resolver_rule_association", + "identifier": "ResolverRuleAssociationId", + "path": "../../examples/resources/awscc_route53resolver_resolver_rule_association/import.sh" + }, + { + "resource": "awscc_s3_access_grant", + "identifier": "AccessGrantId", + "path": "../../examples/resources/awscc_s3_access_grant/import.sh" + }, + { + "resource": "awscc_s3_access_grants_instance", + "identifier": "AccessGrantsInstanceArn", + "path": "../../examples/resources/awscc_s3_access_grants_instance/import.sh" + }, + { + "resource": "awscc_s3_access_grants_location", + "identifier": "AccessGrantsLocationId", + "path": "../../examples/resources/awscc_s3_access_grants_location/import.sh" + }, + { + "resource": "awscc_s3_access_point", + "identifier": "Name", + "path": "../../examples/resources/awscc_s3_access_point/import.sh" + }, + { + "resource": "awscc_s3_bucket", + "identifier": "BucketName", + "path": "../../examples/resources/awscc_s3_bucket/import.sh" + }, + { + "resource": "awscc_s3_bucket_policy", + "identifier": "Bucket", + "path": "../../examples/resources/awscc_s3_bucket_policy/import.sh" + }, + { + "resource": "awscc_s3_multi_region_access_point", + "identifier": "Name", + "path": "../../examples/resources/awscc_s3_multi_region_access_point/import.sh" + }, + { + "resource": "awscc_s3_multi_region_access_point_policy", + "identifier": "MrapName", + "path": "../../examples/resources/awscc_s3_multi_region_access_point_policy/import.sh" + }, + { + "resource": "awscc_s3_storage_lens", + "identifier": "StorageLensConfiguration/Id", + "path": "../../examples/resources/awscc_s3_storage_lens/import.sh" + }, + { + "resource": "awscc_s3_storage_lens_group", + "identifier": "Name", + "path": "../../examples/resources/awscc_s3_storage_lens_group/import.sh" + }, + { + "resource": "awscc_s3express_bucket_policy", + "identifier": "Bucket", + "path": "../../examples/resources/awscc_s3express_bucket_policy/import.sh" + }, + { + "resource": "awscc_s3express_directory_bucket", + "identifier": "BucketName", + "path": "../../examples/resources/awscc_s3express_directory_bucket/import.sh" + }, + { + "resource": "awscc_s3objectlambda_access_point", + "identifier": "Name", + "path": "../../examples/resources/awscc_s3objectlambda_access_point/import.sh" + }, + { + "resource": "awscc_s3objectlambda_access_point_policy", + "identifier": "ObjectLambdaAccessPoint", + "path": "../../examples/resources/awscc_s3objectlambda_access_point_policy/import.sh" + }, + { + "resource": "awscc_s3outposts_access_point", + "identifier": "Arn", + "path": "../../examples/resources/awscc_s3outposts_access_point/import.sh" + }, + { + "resource": "awscc_s3outposts_bucket", + "identifier": "Arn", + "path": "../../examples/resources/awscc_s3outposts_bucket/import.sh" + }, + { + "resource": "awscc_s3outposts_bucket_policy", + "identifier": "Bucket", + "path": "../../examples/resources/awscc_s3outposts_bucket_policy/import.sh" + }, + { + "resource": "awscc_s3outposts_endpoint", + "identifier": "Arn", + "path": "../../examples/resources/awscc_s3outposts_endpoint/import.sh" + }, + { + "resource": "awscc_ses_configuration_set", + "identifier": "Name", + "path": "../../examples/resources/awscc_ses_configuration_set/import.sh" + }, + { + "resource": "awscc_ses_configuration_set_event_destination", + "identifier": "Id", + "path": "../../examples/resources/awscc_ses_configuration_set_event_destination/import.sh" + }, + { + "resource": "awscc_ses_contact_list", + "identifier": "ContactListName", + "path": "../../examples/resources/awscc_ses_contact_list/import.sh" + }, + { + "resource": "awscc_ses_dedicated_ip_pool", + "identifier": "PoolName", + "path": "../../examples/resources/awscc_ses_dedicated_ip_pool/import.sh" + }, + { + "resource": "awscc_ses_email_identity", + "identifier": "EmailIdentity", + "path": "../../examples/resources/awscc_ses_email_identity/import.sh" + }, + { + "resource": "awscc_ses_mail_manager_addon_instance", + "identifier": "AddonInstanceId", + "path": "../../examples/resources/awscc_ses_mail_manager_addon_instance/import.sh" + }, + { + "resource": "awscc_ses_mail_manager_addon_subscription", + "identifier": "AddonSubscriptionId", + "path": "../../examples/resources/awscc_ses_mail_manager_addon_subscription/import.sh" + }, + { + "resource": "awscc_ses_mail_manager_archive", + "identifier": "ArchiveId", + "path": "../../examples/resources/awscc_ses_mail_manager_archive/import.sh" + }, + { + "resource": "awscc_ses_mail_manager_ingress_point", + "identifier": "IngressPointId", + "path": "../../examples/resources/awscc_ses_mail_manager_ingress_point/import.sh" + }, + { + "resource": "awscc_ses_mail_manager_relay", + "identifier": "RelayId", + "path": "../../examples/resources/awscc_ses_mail_manager_relay/import.sh" + }, + { + "resource": "awscc_ses_mail_manager_rule_set", + "identifier": "RuleSetId", + "path": "../../examples/resources/awscc_ses_mail_manager_rule_set/import.sh" + }, + { + "resource": "awscc_ses_mail_manager_traffic_policy", + "identifier": "TrafficPolicyId", + "path": "../../examples/resources/awscc_ses_mail_manager_traffic_policy/import.sh" + }, + { + "resource": "awscc_ses_template", + "identifier": "Id", + "path": "../../examples/resources/awscc_ses_template/import.sh" + }, + { + "resource": "awscc_ses_vdm_attributes", + "identifier": "VdmAttributesResourceId", + "path": "../../examples/resources/awscc_ses_vdm_attributes/import.sh" + }, + { + "resource": "awscc_sns_topic", + "identifier": "TopicArn", + "path": "../../examples/resources/awscc_sns_topic/import.sh" + }, + { + "resource": "awscc_sns_topic_inline_policy", + "identifier": "TopicArn", + "path": "../../examples/resources/awscc_sns_topic_inline_policy/import.sh" + }, + { + "resource": "awscc_sqs_queue", + "identifier": "QueueUrl", + "path": "../../examples/resources/awscc_sqs_queue/import.sh" + }, + { + "resource": "awscc_sqs_queue_inline_policy", + "identifier": "Queue", + "path": "../../examples/resources/awscc_sqs_queue_inline_policy/import.sh" + }, + { + "resource": "awscc_ssm_association", + "identifier": "AssociationId", + "path": "../../examples/resources/awscc_ssm_association/import.sh" + }, + { + "resource": "awscc_ssm_document", + "identifier": "Name", + "path": "../../examples/resources/awscc_ssm_document/import.sh" + }, + { + "resource": "awscc_ssm_parameter", + "identifier": "Name", + "path": "../../examples/resources/awscc_ssm_parameter/import.sh" + }, + { + "resource": "awscc_ssm_patch_baseline", + "identifier": "Id", + "path": "../../examples/resources/awscc_ssm_patch_baseline/import.sh" + }, + { + "resource": "awscc_ssm_resource_data_sync", + "identifier": "SyncName", + "path": "../../examples/resources/awscc_ssm_resource_data_sync/import.sh" + }, + { + "resource": "awscc_ssm_resource_policy", + "identifier": "PolicyId,ResourceArn", + "path": "../../examples/resources/awscc_ssm_resource_policy/import.sh" + }, + { + "resource": "awscc_ssmcontacts_contact", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ssmcontacts_contact/import.sh" + }, + { + "resource": "awscc_ssmcontacts_contact_channel", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ssmcontacts_contact_channel/import.sh" + }, + { + "resource": "awscc_ssmcontacts_plan", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ssmcontacts_plan/import.sh" + }, + { + "resource": "awscc_ssmcontacts_rotation", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ssmcontacts_rotation/import.sh" + }, + { + "resource": "awscc_ssmincidents_replication_set", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ssmincidents_replication_set/import.sh" + }, + { + "resource": "awscc_ssmincidents_response_plan", + "identifier": "Arn", + "path": "../../examples/resources/awscc_ssmincidents_response_plan/import.sh" + }, + { + "resource": "awscc_sso_application", + "identifier": "ApplicationArn", + "path": "../../examples/resources/awscc_sso_application/import.sh" + }, + { + "resource": "awscc_sso_application_assignment", + "identifier": "ApplicationArn,PrincipalType,PrincipalId", + "path": "../../examples/resources/awscc_sso_application_assignment/import.sh" + }, + { + "resource": "awscc_sso_assignment", + "identifier": "InstanceArn,TargetId,TargetType,PermissionSetArn,PrincipalType,PrincipalId", + "path": "../../examples/resources/awscc_sso_assignment/import.sh" + }, + { + "resource": "awscc_sso_instance", + "identifier": "InstanceArn", + "path": "../../examples/resources/awscc_sso_instance/import.sh" + }, + { + "resource": "awscc_sso_instance_access_control_attribute_configuration", + "identifier": "InstanceArn", + "path": "../../examples/resources/awscc_sso_instance_access_control_attribute_configuration/import.sh" + }, + { + "resource": "awscc_sso_permission_set", + "identifier": "InstanceArn,PermissionSetArn", + "path": "../../examples/resources/awscc_sso_permission_set/import.sh" + }, + { + "resource": "awscc_sagemaker_app", + "identifier": "AppName,AppType,DomainId,UserProfileName", + "path": "../../examples/resources/awscc_sagemaker_app/import.sh" + }, + { + "resource": "awscc_sagemaker_app_image_config", + "identifier": "AppImageConfigName", + "path": "../../examples/resources/awscc_sagemaker_app_image_config/import.sh" + }, + { + "resource": "awscc_sagemaker_data_quality_job_definition", + "identifier": "JobDefinitionArn", + "path": "../../examples/resources/awscc_sagemaker_data_quality_job_definition/import.sh" + }, + { + "resource": "awscc_sagemaker_device", + "identifier": "Device/DeviceName", + "path": "../../examples/resources/awscc_sagemaker_device/import.sh" + }, + { + "resource": "awscc_sagemaker_device_fleet", + "identifier": "DeviceFleetName", + "path": "../../examples/resources/awscc_sagemaker_device_fleet/import.sh" + }, + { + "resource": "awscc_sagemaker_domain", + "identifier": "DomainId", + "path": "../../examples/resources/awscc_sagemaker_domain/import.sh" + }, + { + "resource": "awscc_sagemaker_feature_group", + "identifier": "FeatureGroupName", + "path": "../../examples/resources/awscc_sagemaker_feature_group/import.sh" + }, + { + "resource": "awscc_sagemaker_image", + "identifier": "ImageArn", + "path": "../../examples/resources/awscc_sagemaker_image/import.sh" + }, + { + "resource": "awscc_sagemaker_image_version", + "identifier": "ImageVersionArn", + "path": "../../examples/resources/awscc_sagemaker_image_version/import.sh" + }, + { + "resource": "awscc_sagemaker_inference_component", + "identifier": "InferenceComponentArn", + "path": "../../examples/resources/awscc_sagemaker_inference_component/import.sh" + }, + { + "resource": "awscc_sagemaker_inference_experiment", + "identifier": "Name", + "path": "../../examples/resources/awscc_sagemaker_inference_experiment/import.sh" + }, + { + "resource": "awscc_sagemaker_mlflow_tracking_server", + "identifier": "TrackingServerName", + "path": "../../examples/resources/awscc_sagemaker_mlflow_tracking_server/import.sh" + }, + { + "resource": "awscc_sagemaker_model_bias_job_definition", + "identifier": "JobDefinitionArn", + "path": "../../examples/resources/awscc_sagemaker_model_bias_job_definition/import.sh" + }, + { + "resource": "awscc_sagemaker_model_explainability_job_definition", + "identifier": "JobDefinitionArn", + "path": "../../examples/resources/awscc_sagemaker_model_explainability_job_definition/import.sh" + }, + { + "resource": "awscc_sagemaker_model_package", + "identifier": "ModelPackageArn", + "path": "../../examples/resources/awscc_sagemaker_model_package/import.sh" + }, + { + "resource": "awscc_sagemaker_model_package_group", + "identifier": "ModelPackageGroupArn", + "path": "../../examples/resources/awscc_sagemaker_model_package_group/import.sh" + }, + { + "resource": "awscc_sagemaker_model_quality_job_definition", + "identifier": "JobDefinitionArn", + "path": "../../examples/resources/awscc_sagemaker_model_quality_job_definition/import.sh" + }, + { + "resource": "awscc_sagemaker_monitoring_schedule", + "identifier": "MonitoringScheduleArn", + "path": "../../examples/resources/awscc_sagemaker_monitoring_schedule/import.sh" + }, + { + "resource": "awscc_sagemaker_pipeline", + "identifier": "PipelineName", + "path": "../../examples/resources/awscc_sagemaker_pipeline/import.sh" + }, + { + "resource": "awscc_sagemaker_project", + "identifier": "ProjectArn", + "path": "../../examples/resources/awscc_sagemaker_project/import.sh" + }, + { + "resource": "awscc_sagemaker_space", + "identifier": "DomainId,SpaceName", + "path": "../../examples/resources/awscc_sagemaker_space/import.sh" + }, + { + "resource": "awscc_sagemaker_studio_lifecycle_config", + "identifier": "StudioLifecycleConfigName", + "path": "../../examples/resources/awscc_sagemaker_studio_lifecycle_config/import.sh" + }, + { + "resource": "awscc_sagemaker_user_profile", + "identifier": "UserProfileName,DomainId", + "path": "../../examples/resources/awscc_sagemaker_user_profile/import.sh" + }, + { + "resource": "awscc_scheduler_schedule_group", + "identifier": "Name", + "path": "../../examples/resources/awscc_scheduler_schedule_group/import.sh" + }, + { + "resource": "awscc_secretsmanager_resource_policy", + "identifier": "Id", + "path": "../../examples/resources/awscc_secretsmanager_resource_policy/import.sh" + }, + { + "resource": "awscc_secretsmanager_secret", + "identifier": "Id", + "path": "../../examples/resources/awscc_secretsmanager_secret/import.sh" + }, + { + "resource": "awscc_securityhub_configuration_policy", + "identifier": "Arn", + "path": "../../examples/resources/awscc_securityhub_configuration_policy/import.sh" + }, + { + "resource": "awscc_securityhub_delegated_admin", + "identifier": "DelegatedAdminIdentifier", + "path": "../../examples/resources/awscc_securityhub_delegated_admin/import.sh" + }, + { + "resource": "awscc_securityhub_finding_aggregator", + "identifier": "FindingAggregatorArn", + "path": "../../examples/resources/awscc_securityhub_finding_aggregator/import.sh" + }, + { + "resource": "awscc_securityhub_hub", + "identifier": "ARN", + "path": "../../examples/resources/awscc_securityhub_hub/import.sh" + }, + { + "resource": "awscc_securityhub_insight", + "identifier": "InsightArn", + "path": "../../examples/resources/awscc_securityhub_insight/import.sh" + }, + { + "resource": "awscc_securityhub_organization_configuration", + "identifier": "OrganizationConfigurationIdentifier", + "path": "../../examples/resources/awscc_securityhub_organization_configuration/import.sh" + }, + { + "resource": "awscc_securityhub_policy_association", + "identifier": "AssociationIdentifier", + "path": "../../examples/resources/awscc_securityhub_policy_association/import.sh" + }, + { + "resource": "awscc_securityhub_product_subscription", + "identifier": "ProductSubscriptionArn", + "path": "../../examples/resources/awscc_securityhub_product_subscription/import.sh" + }, + { + "resource": "awscc_securityhub_security_control", + "identifier": "SecurityControlId", + "path": "../../examples/resources/awscc_securityhub_security_control/import.sh" + }, + { + "resource": "awscc_securityhub_standard", + "identifier": "StandardsSubscriptionArn", + "path": "../../examples/resources/awscc_securityhub_standard/import.sh" + }, + { + "resource": "awscc_securitylake_aws_log_source", + "identifier": "SourceName,SourceVersion", + "path": "../../examples/resources/awscc_securitylake_aws_log_source/import.sh" + }, + { + "resource": "awscc_securitylake_data_lake", + "identifier": "Arn", + "path": "../../examples/resources/awscc_securitylake_data_lake/import.sh" + }, + { + "resource": "awscc_securitylake_subscriber_notification", + "identifier": "SubscriberArn", + "path": "../../examples/resources/awscc_securitylake_subscriber_notification/import.sh" + }, + { + "resource": "awscc_servicecatalog_cloudformation_provisioned_product", + "identifier": "ProvisionedProductId", + "path": "../../examples/resources/awscc_servicecatalog_cloudformation_provisioned_product/import.sh" + }, + { + "resource": "awscc_servicecatalog_service_action", + "identifier": "Id", + "path": "../../examples/resources/awscc_servicecatalog_service_action/import.sh" + }, + { + "resource": "awscc_servicecatalog_service_action_association", + "identifier": "ProductId,ProvisioningArtifactId,ServiceActionId", + "path": "../../examples/resources/awscc_servicecatalog_service_action_association/import.sh" + }, + { + "resource": "awscc_servicecatalogappregistry_application", + "identifier": "Id", + "path": "../../examples/resources/awscc_servicecatalogappregistry_application/import.sh" + }, + { + "resource": "awscc_servicecatalogappregistry_attribute_group", + "identifier": "Id", + "path": "../../examples/resources/awscc_servicecatalogappregistry_attribute_group/import.sh" + }, + { + "resource": "awscc_servicecatalogappregistry_attribute_group_association", + "identifier": "ApplicationArn,AttributeGroupArn", + "path": "../../examples/resources/awscc_servicecatalogappregistry_attribute_group_association/import.sh" + }, + { + "resource": "awscc_servicecatalogappregistry_resource_association", + "identifier": "ApplicationArn,ResourceArn,ResourceType", + "path": "../../examples/resources/awscc_servicecatalogappregistry_resource_association/import.sh" + }, + { + "resource": "awscc_shield_drt_access", + "identifier": "AccountId", + "path": "../../examples/resources/awscc_shield_drt_access/import.sh" + }, + { + "resource": "awscc_shield_proactive_engagement", + "identifier": "AccountId", + "path": "../../examples/resources/awscc_shield_proactive_engagement/import.sh" + }, + { + "resource": "awscc_shield_protection", + "identifier": "ProtectionArn", + "path": "../../examples/resources/awscc_shield_protection/import.sh" + }, + { + "resource": "awscc_shield_protection_group", + "identifier": "ProtectionGroupArn", + "path": "../../examples/resources/awscc_shield_protection_group/import.sh" + }, + { + "resource": "awscc_signer_profile_permission", + "identifier": "StatementId,ProfileName", + "path": "../../examples/resources/awscc_signer_profile_permission/import.sh" + }, + { + "resource": "awscc_signer_signing_profile", + "identifier": "Arn", + "path": "../../examples/resources/awscc_signer_signing_profile/import.sh" + }, + { + "resource": "awscc_simspaceweaver_simulation", + "identifier": "Name", + "path": "../../examples/resources/awscc_simspaceweaver_simulation/import.sh" + }, + { + "resource": "awscc_stepfunctions_activity", + "identifier": "Arn", + "path": "../../examples/resources/awscc_stepfunctions_activity/import.sh" + }, + { + "resource": "awscc_stepfunctions_state_machine", + "identifier": "Arn", + "path": "../../examples/resources/awscc_stepfunctions_state_machine/import.sh" + }, + { + "resource": "awscc_stepfunctions_state_machine_alias", + "identifier": "Arn", + "path": "../../examples/resources/awscc_stepfunctions_state_machine_alias/import.sh" + }, + { + "resource": "awscc_stepfunctions_state_machine_version", + "identifier": "Arn", + "path": "../../examples/resources/awscc_stepfunctions_state_machine_version/import.sh" + }, + { + "resource": "awscc_supportapp_account_alias", + "identifier": "AccountAliasResourceId", + "path": "../../examples/resources/awscc_supportapp_account_alias/import.sh" + }, + { + "resource": "awscc_supportapp_slack_channel_configuration", + "identifier": "TeamId,ChannelId", + "path": "../../examples/resources/awscc_supportapp_slack_channel_configuration/import.sh" + }, + { + "resource": "awscc_supportapp_slack_workspace_configuration", + "identifier": "TeamId", + "path": "../../examples/resources/awscc_supportapp_slack_workspace_configuration/import.sh" + }, + { + "resource": "awscc_synthetics_canary", + "identifier": "Name", + "path": "../../examples/resources/awscc_synthetics_canary/import.sh" + }, + { + "resource": "awscc_synthetics_group", + "identifier": "Name", + "path": "../../examples/resources/awscc_synthetics_group/import.sh" + }, + { + "resource": "awscc_systemsmanagersap_application", + "identifier": "Arn", + "path": "../../examples/resources/awscc_systemsmanagersap_application/import.sh" + }, + { + "resource": "awscc_timestream_database", + "identifier": "DatabaseName", + "path": "../../examples/resources/awscc_timestream_database/import.sh" + }, + { + "resource": "awscc_timestream_influx_db_instance", + "identifier": "Id", + "path": "../../examples/resources/awscc_timestream_influx_db_instance/import.sh" + }, + { + "resource": "awscc_timestream_scheduled_query", + "identifier": "Arn", + "path": "../../examples/resources/awscc_timestream_scheduled_query/import.sh" + }, + { + "resource": "awscc_timestream_table", + "identifier": "DatabaseName,TableName", + "path": "../../examples/resources/awscc_timestream_table/import.sh" + }, + { + "resource": "awscc_transfer_agreement", + "identifier": "AgreementId,ServerId", + "path": "../../examples/resources/awscc_transfer_agreement/import.sh" + }, + { + "resource": "awscc_transfer_certificate", + "identifier": "CertificateId", + "path": "../../examples/resources/awscc_transfer_certificate/import.sh" + }, + { + "resource": "awscc_transfer_connector", + "identifier": "ConnectorId", + "path": "../../examples/resources/awscc_transfer_connector/import.sh" + }, + { + "resource": "awscc_transfer_profile", + "identifier": "ProfileId", + "path": "../../examples/resources/awscc_transfer_profile/import.sh" + }, + { + "resource": "awscc_transfer_workflow", + "identifier": "WorkflowId", + "path": "../../examples/resources/awscc_transfer_workflow/import.sh" + }, + { + "resource": "awscc_verifiedpermissions_identity_source", + "identifier": "IdentitySourceId,PolicyStoreId", + "path": "../../examples/resources/awscc_verifiedpermissions_identity_source/import.sh" + }, + { + "resource": "awscc_verifiedpermissions_policy", + "identifier": "PolicyId,PolicyStoreId", + "path": "../../examples/resources/awscc_verifiedpermissions_policy/import.sh" + }, + { + "resource": "awscc_verifiedpermissions_policy_store", + "identifier": "PolicyStoreId", + "path": "../../examples/resources/awscc_verifiedpermissions_policy_store/import.sh" + }, + { + "resource": "awscc_verifiedpermissions_policy_template", + "identifier": "PolicyStoreId,PolicyTemplateId", + "path": "../../examples/resources/awscc_verifiedpermissions_policy_template/import.sh" + }, + { + "resource": "awscc_voiceid_domain", + "identifier": "DomainId", + "path": "../../examples/resources/awscc_voiceid_domain/import.sh" + }, + { + "resource": "awscc_vpclattice_access_log_subscription", + "identifier": "Arn", + "path": "../../examples/resources/awscc_vpclattice_access_log_subscription/import.sh" + }, + { + "resource": "awscc_vpclattice_auth_policy", + "identifier": "ResourceIdentifier", + "path": "../../examples/resources/awscc_vpclattice_auth_policy/import.sh" + }, + { + "resource": "awscc_vpclattice_listener", + "identifier": "Arn", + "path": "../../examples/resources/awscc_vpclattice_listener/import.sh" + }, + { + "resource": "awscc_vpclattice_resource_policy", + "identifier": "ResourceArn", + "path": "../../examples/resources/awscc_vpclattice_resource_policy/import.sh" + }, + { + "resource": "awscc_vpclattice_rule", + "identifier": "Arn", + "path": "../../examples/resources/awscc_vpclattice_rule/import.sh" + }, + { + "resource": "awscc_vpclattice_service", + "identifier": "Arn", + "path": "../../examples/resources/awscc_vpclattice_service/import.sh" + }, + { + "resource": "awscc_vpclattice_service_network", + "identifier": "Arn", + "path": "../../examples/resources/awscc_vpclattice_service_network/import.sh" + }, + { + "resource": "awscc_vpclattice_service_network_service_association", + "identifier": "Arn", + "path": "../../examples/resources/awscc_vpclattice_service_network_service_association/import.sh" + }, + { + "resource": "awscc_vpclattice_service_network_vpc_association", + "identifier": "Arn", + "path": "../../examples/resources/awscc_vpclattice_service_network_vpc_association/import.sh" + }, + { + "resource": "awscc_vpclattice_target_group", + "identifier": "Arn", + "path": "../../examples/resources/awscc_vpclattice_target_group/import.sh" + }, + { + "resource": "awscc_wafv2_ip_set", + "identifier": "Name,Id,Scope", + "path": "../../examples/resources/awscc_wafv2_ip_set/import.sh" + }, + { + "resource": "awscc_wafv2_logging_configuration", + "identifier": "ResourceArn", + "path": "../../examples/resources/awscc_wafv2_logging_configuration/import.sh" + }, + { + "resource": "awscc_wafv2_regex_pattern_set", + "identifier": "Name,Id,Scope", + "path": "../../examples/resources/awscc_wafv2_regex_pattern_set/import.sh" + }, + { + "resource": "awscc_wafv2_web_acl_association", + "identifier": "ResourceArn,WebACLArn", + "path": "../../examples/resources/awscc_wafv2_web_acl_association/import.sh" + }, + { + "resource": "awscc_wisdom_assistant", + "identifier": "AssistantId", + "path": "../../examples/resources/awscc_wisdom_assistant/import.sh" + }, + { + "resource": "awscc_wisdom_assistant_association", + "identifier": "AssistantAssociationId,AssistantId", + "path": "../../examples/resources/awscc_wisdom_assistant_association/import.sh" + }, + { + "resource": "awscc_wisdom_knowledge_base", + "identifier": "KnowledgeBaseId", + "path": "../../examples/resources/awscc_wisdom_knowledge_base/import.sh" + }, + { + "resource": "awscc_workspaces_connection_alias", + "identifier": "AliasId", + "path": "../../examples/resources/awscc_workspaces_connection_alias/import.sh" + }, + { + "resource": "awscc_workspaces_workspaces_pool", + "identifier": "PoolId", + "path": "../../examples/resources/awscc_workspaces_workspaces_pool/import.sh" + }, + { + "resource": "awscc_workspacesthinclient_environment", + "identifier": "Id", + "path": "../../examples/resources/awscc_workspacesthinclient_environment/import.sh" + }, + { + "resource": "awscc_workspacesweb_browser_settings", + "identifier": "BrowserSettingsArn", + "path": "../../examples/resources/awscc_workspacesweb_browser_settings/import.sh" + }, + { + "resource": "awscc_workspacesweb_identity_provider", + "identifier": "IdentityProviderArn", + "path": "../../examples/resources/awscc_workspacesweb_identity_provider/import.sh" + }, + { + "resource": "awscc_workspacesweb_ip_access_settings", + "identifier": "IpAccessSettingsArn", + "path": "../../examples/resources/awscc_workspacesweb_ip_access_settings/import.sh" + }, + { + "resource": "awscc_workspacesweb_network_settings", + "identifier": "NetworkSettingsArn", + "path": "../../examples/resources/awscc_workspacesweb_network_settings/import.sh" + }, + { + "resource": "awscc_workspacesweb_portal", + "identifier": "PortalArn", + "path": "../../examples/resources/awscc_workspacesweb_portal/import.sh" + }, + { + "resource": "awscc_workspacesweb_trust_store", + "identifier": "TrustStoreArn", + "path": "../../examples/resources/awscc_workspacesweb_trust_store/import.sh" + }, + { + "resource": "awscc_workspacesweb_user_access_logging_settings", + "identifier": "UserAccessLoggingSettingsArn", + "path": "../../examples/resources/awscc_workspacesweb_user_access_logging_settings/import.sh" + }, + { + "resource": "awscc_workspacesweb_user_settings", + "identifier": "UserSettingsArn", + "path": "../../examples/resources/awscc_workspacesweb_user_settings/import.sh" + }, + { + "resource": "awscc_xray_group", + "identifier": "GroupARN", + "path": "../../examples/resources/awscc_xray_group/import.sh" + }, + { + "resource": "awscc_xray_resource_policy", + "identifier": "PolicyName", + "path": "../../examples/resources/awscc_xray_resource_policy/import.sh" + }, + { + "resource": "awscc_xray_sampling_rule", + "identifier": "RuleARN", + "path": "../../examples/resources/awscc_xray_sampling_rule/import.sh" + } +] diff --git a/internal/provider/schemas.go b/internal/provider/schemas.go index 93cfde1c4..7adc00458 100644 --- a/internal/provider/schemas.go +++ b/internal/provider/schemas.go @@ -1,6 +1,6 @@ // Copyright (c) HashiCorp, Inc. // SPDX-License-Identifier: MPL-2.0 -//go:generate go run generators/schema/main.go -config all_schemas.hcl -generated-code-root .. -import-path-root github.com/hashicorp/terraform-provider-awscc/internal -- resources.go singular_data_sources.go plural_data_sources.go import_examples.go +//go:generate go run generators/schema/main.go -config all_schemas.hcl -generated-code-root .. -import-path-root github.com/hashicorp/terraform-provider-awscc/internal -- resources.go singular_data_sources.go plural_data_sources.go import_examples.json package provider From d522b10fb83ad902dec7cff4d89a80db514a61b4 Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Wed, 28 Aug 2024 14:17:27 -0500 Subject: [PATCH 2/9] make import examples file json --- internal/provider/generators/schema/main.go | 4 ++++ internal/provider/import_examples.json | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/internal/provider/generators/schema/main.go b/internal/provider/generators/schema/main.go index 2b5844eea..32304a13c 100644 --- a/internal/provider/generators/schema/main.go +++ b/internal/provider/generators/schema/main.go @@ -538,6 +538,10 @@ func (g *Generator) GenerateResourceImportExamples(packageName, filename string, importsTemplateData.Resources = append(importsTemplateData.Resources, r) } + importsTemplateData.Resources = append(importsTemplateData.Resources, &ResourceImportData{ + ResourceName: "aws_kms_key", + Identifier: "test,onetwothree", + }) i := g.NewUnformattedFileDestination(filename) if err := i.CreateDirectories(); err != nil { diff --git a/internal/provider/import_examples.json b/internal/provider/import_examples.json index 566727341..a9ca96f04 100644 --- a/internal/provider/import_examples.json +++ b/internal/provider/import_examples.json @@ -5048,5 +5048,10 @@ "resource": "awscc_xray_sampling_rule", "identifier": "RuleARN", "path": "../../examples/resources/awscc_xray_sampling_rule/import.sh" + }, + { + "resource": "aws_kms_key", + "identifier": "test,onetwothree", + "path": "../../examples/resources/aws_kms_key/import.sh" } ] From fd32204a96ebe0f3e694dcd6f462f2e9cf7dae1a Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Wed, 28 Aug 2024 14:18:23 -0500 Subject: [PATCH 3/9] cleanup --- internal/provider/generators/schema/main.go | 5 ----- internal/provider/import_examples.json | 5 ----- 2 files changed, 10 deletions(-) diff --git a/internal/provider/generators/schema/main.go b/internal/provider/generators/schema/main.go index 32304a13c..18af5ede8 100644 --- a/internal/provider/generators/schema/main.go +++ b/internal/provider/generators/schema/main.go @@ -537,11 +537,6 @@ func (g *Generator) GenerateResourceImportExamples(packageName, filename string, r.Identifier = strings.Join(temp, ",") importsTemplateData.Resources = append(importsTemplateData.Resources, r) } - - importsTemplateData.Resources = append(importsTemplateData.Resources, &ResourceImportData{ - ResourceName: "aws_kms_key", - Identifier: "test,onetwothree", - }) i := g.NewUnformattedFileDestination(filename) if err := i.CreateDirectories(); err != nil { diff --git a/internal/provider/import_examples.json b/internal/provider/import_examples.json index a9ca96f04..566727341 100644 --- a/internal/provider/import_examples.json +++ b/internal/provider/import_examples.json @@ -5048,10 +5048,5 @@ "resource": "awscc_xray_sampling_rule", "identifier": "RuleARN", "path": "../../examples/resources/awscc_xray_sampling_rule/import.sh" - }, - { - "resource": "aws_kms_key", - "identifier": "test,onetwothree", - "path": "../../examples/resources/aws_kms_key/import.sh" } ] From 8835da14deacf1f483660b9b33482918a5961ce4 Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Wed, 28 Aug 2024 14:41:17 -0500 Subject: [PATCH 4/9] change file path for resource docs --- GNUmakefile | 2 +- .../generators/import-examples/main.go | 38 +- .../provider/generators/schema/imports.tmpl | 2 +- internal/provider/import_examples.json | 2020 ++++++++--------- 4 files changed, 1041 insertions(+), 1021 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index ddee7543a..3accaf539 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -62,7 +62,7 @@ tools: prereq-go cd tools && $(GO_VER) install golang.org/x/tools/cmd/goimports@latest docs: prereq-go - $(GO_VER) generate internal/provider/import_examples.go + $(GO_VER) run internal/provider/generators/import-examples/main.go -file=internal/provider/import_examples.json rm -f docs/data-sources/*.md rm -f docs/resources/*.md @tfplugindocs generate diff --git a/internal/provider/generators/import-examples/main.go b/internal/provider/generators/import-examples/main.go index 46757bcc2..1550087f3 100644 --- a/internal/provider/generators/import-examples/main.go +++ b/internal/provider/generators/import-examples/main.go @@ -7,8 +7,10 @@ package main import ( + "encoding/json" "flag" "fmt" + "log" "os" "regexp" "strings" @@ -17,13 +19,18 @@ import ( ) var ( - identifier = flag.String("identifier", "", "Primary identifier for the resource") - resourceName = flag.String("resource", "", "Resource name") + file = flag.String("file", "", "Primary identifier for the resource") ) +type FileData struct { + Resource string + Identifier string + Path string +} + func usage() { fmt.Fprintf(os.Stderr, "Usage:\n") - fmt.Fprintf(os.Stderr, "\tmain.go [flags] -identifier -resource -- filename\n\n") + fmt.Fprintf(os.Stderr, "\tmain.go [flags] -file \n\n") fmt.Fprintf(os.Stderr, "Flags:\n") flag.PrintDefaults() } @@ -32,18 +39,31 @@ func main() { flag.Usage = usage flag.Parse() - args := flag.Args() - filename := args[0] - - if *resourceName == "" || filename == "" { + if *file == "" { flag.Usage() os.Exit(2) } + f, err := os.Open(*file) + if err != nil { + os.Exit(2) + } + defer f.Close() + + var data []FileData + decoder := json.NewDecoder(f) + err = decoder.Decode(&data) + if err != nil { + log.Fatal(err) + } + + fmt.Printf("data: %v\n", data) g := NewGenerator() - if err := g.GenerateExample(*resourceName, *identifier, filename); err != nil { - g.Fatalf("error generating Terraform %s import example: %s", *resourceName, err) + for _, v := range data { + if err := g.GenerateExample(v.Resource, v.Identifier, v.Path); err != nil { + g.Fatalf("error generating Terraform %s import example: %s", v.Resource, err) + } } } diff --git a/internal/provider/generators/schema/imports.tmpl b/internal/provider/generators/schema/imports.tmpl index 373d39ac3..49e9831a4 100644 --- a/internal/provider/generators/schema/imports.tmpl +++ b/internal/provider/generators/schema/imports.tmpl @@ -4,7 +4,7 @@ { "resource": "{{ $e.ResourceName }}", "identifier": "{{ $e.Identifier }}", - "path": "../../examples/resources/{{ $e.ResourceName }}/import.sh" + "path": "./examples/resources/{{ $e.ResourceName }}/import.sh" } {{- end}} ] diff --git a/internal/provider/import_examples.json b/internal/provider/import_examples.json index 566727341..f33ca281f 100644 --- a/internal/provider/import_examples.json +++ b/internal/provider/import_examples.json @@ -2,5051 +2,5051 @@ { "resource": "awscc_acmpca_certificate", "identifier": "Arn,CertificateAuthorityArn", - "path": "../../examples/resources/awscc_acmpca_certificate/import.sh" + "path": "./examples/resources/awscc_acmpca_certificate/import.sh" }, { "resource": "awscc_acmpca_certificate_authority", "identifier": "Arn", - "path": "../../examples/resources/awscc_acmpca_certificate_authority/import.sh" + "path": "./examples/resources/awscc_acmpca_certificate_authority/import.sh" }, { "resource": "awscc_acmpca_certificate_authority_activation", "identifier": "CertificateAuthorityArn", - "path": "../../examples/resources/awscc_acmpca_certificate_authority_activation/import.sh" + "path": "./examples/resources/awscc_acmpca_certificate_authority_activation/import.sh" }, { "resource": "awscc_acmpca_permission", "identifier": "CertificateAuthorityArn,Principal", - "path": "../../examples/resources/awscc_acmpca_permission/import.sh" + "path": "./examples/resources/awscc_acmpca_permission/import.sh" }, { "resource": "awscc_aps_rule_groups_namespace", "identifier": "Arn", - "path": "../../examples/resources/awscc_aps_rule_groups_namespace/import.sh" + "path": "./examples/resources/awscc_aps_rule_groups_namespace/import.sh" }, { "resource": "awscc_aps_scraper", "identifier": "Arn", - "path": "../../examples/resources/awscc_aps_scraper/import.sh" + "path": "./examples/resources/awscc_aps_scraper/import.sh" }, { "resource": "awscc_aps_workspace", "identifier": "Arn", - "path": "../../examples/resources/awscc_aps_workspace/import.sh" + "path": "./examples/resources/awscc_aps_workspace/import.sh" }, { "resource": "awscc_arczonalshift_autoshift_observer_notification_status", "identifier": "AccountId,Region", - "path": "../../examples/resources/awscc_arczonalshift_autoshift_observer_notification_status/import.sh" + "path": "./examples/resources/awscc_arczonalshift_autoshift_observer_notification_status/import.sh" }, { "resource": "awscc_arczonalshift_zonal_autoshift_configuration", "identifier": "ResourceIdentifier", - "path": "../../examples/resources/awscc_arczonalshift_zonal_autoshift_configuration/import.sh" + "path": "./examples/resources/awscc_arczonalshift_zonal_autoshift_configuration/import.sh" }, { "resource": "awscc_accessanalyzer_analyzer", "identifier": "Arn", - "path": "../../examples/resources/awscc_accessanalyzer_analyzer/import.sh" + "path": "./examples/resources/awscc_accessanalyzer_analyzer/import.sh" }, { "resource": "awscc_amplify_app", "identifier": "Arn", - "path": "../../examples/resources/awscc_amplify_app/import.sh" + "path": "./examples/resources/awscc_amplify_app/import.sh" }, { "resource": "awscc_amplify_branch", "identifier": "Arn", - "path": "../../examples/resources/awscc_amplify_branch/import.sh" + "path": "./examples/resources/awscc_amplify_branch/import.sh" }, { "resource": "awscc_amplify_domain", "identifier": "Arn", - "path": "../../examples/resources/awscc_amplify_domain/import.sh" + "path": "./examples/resources/awscc_amplify_domain/import.sh" }, { "resource": "awscc_apigateway_account", "identifier": "Id", - "path": "../../examples/resources/awscc_apigateway_account/import.sh" + "path": "./examples/resources/awscc_apigateway_account/import.sh" }, { "resource": "awscc_apigateway_api_key", "identifier": "APIKeyId", - "path": "../../examples/resources/awscc_apigateway_api_key/import.sh" + "path": "./examples/resources/awscc_apigateway_api_key/import.sh" }, { "resource": "awscc_apigateway_authorizer", "identifier": "RestApiId,AuthorizerId", - "path": "../../examples/resources/awscc_apigateway_authorizer/import.sh" + "path": "./examples/resources/awscc_apigateway_authorizer/import.sh" }, { "resource": "awscc_apigateway_base_path_mapping", "identifier": "DomainName,BasePath", - "path": "../../examples/resources/awscc_apigateway_base_path_mapping/import.sh" + "path": "./examples/resources/awscc_apigateway_base_path_mapping/import.sh" }, { "resource": "awscc_apigateway_client_certificate", "identifier": "ClientCertificateId", - "path": "../../examples/resources/awscc_apigateway_client_certificate/import.sh" + "path": "./examples/resources/awscc_apigateway_client_certificate/import.sh" }, { "resource": "awscc_apigateway_deployment", "identifier": "DeploymentId,RestApiId", - "path": "../../examples/resources/awscc_apigateway_deployment/import.sh" + "path": "./examples/resources/awscc_apigateway_deployment/import.sh" }, { "resource": "awscc_apigateway_documentation_part", "identifier": "DocumentationPartId,RestApiId", - "path": "../../examples/resources/awscc_apigateway_documentation_part/import.sh" + "path": "./examples/resources/awscc_apigateway_documentation_part/import.sh" }, { "resource": "awscc_apigateway_documentation_version", "identifier": "DocumentationVersion,RestApiId", - "path": "../../examples/resources/awscc_apigateway_documentation_version/import.sh" + "path": "./examples/resources/awscc_apigateway_documentation_version/import.sh" }, { "resource": "awscc_apigateway_domain_name", "identifier": "DomainName", - "path": "../../examples/resources/awscc_apigateway_domain_name/import.sh" + "path": "./examples/resources/awscc_apigateway_domain_name/import.sh" }, { "resource": "awscc_apigateway_gateway_response", "identifier": "Id", - "path": "../../examples/resources/awscc_apigateway_gateway_response/import.sh" + "path": "./examples/resources/awscc_apigateway_gateway_response/import.sh" }, { "resource": "awscc_apigateway_method", "identifier": "RestApiId,ResourceId,HttpMethod", - "path": "../../examples/resources/awscc_apigateway_method/import.sh" + "path": "./examples/resources/awscc_apigateway_method/import.sh" }, { "resource": "awscc_apigateway_model", "identifier": "RestApiId,Name", - "path": "../../examples/resources/awscc_apigateway_model/import.sh" + "path": "./examples/resources/awscc_apigateway_model/import.sh" }, { "resource": "awscc_apigateway_request_validator", "identifier": "RestApiId,RequestValidatorId", - "path": "../../examples/resources/awscc_apigateway_request_validator/import.sh" + "path": "./examples/resources/awscc_apigateway_request_validator/import.sh" }, { "resource": "awscc_apigateway_resource", "identifier": "RestApiId,ResourceId", - "path": "../../examples/resources/awscc_apigateway_resource/import.sh" + "path": "./examples/resources/awscc_apigateway_resource/import.sh" }, { "resource": "awscc_apigateway_rest_api", "identifier": "RestApiId", - "path": "../../examples/resources/awscc_apigateway_rest_api/import.sh" + "path": "./examples/resources/awscc_apigateway_rest_api/import.sh" }, { "resource": "awscc_apigateway_stage", "identifier": "RestApiId,StageName", - "path": "../../examples/resources/awscc_apigateway_stage/import.sh" + "path": "./examples/resources/awscc_apigateway_stage/import.sh" }, { "resource": "awscc_apigateway_usage_plan", "identifier": "Id", - "path": "../../examples/resources/awscc_apigateway_usage_plan/import.sh" + "path": "./examples/resources/awscc_apigateway_usage_plan/import.sh" }, { "resource": "awscc_apigateway_usage_plan_key", "identifier": "Id", - "path": "../../examples/resources/awscc_apigateway_usage_plan_key/import.sh" + "path": "./examples/resources/awscc_apigateway_usage_plan_key/import.sh" }, { "resource": "awscc_apigateway_vpc_link", "identifier": "VpcLinkId", - "path": "../../examples/resources/awscc_apigateway_vpc_link/import.sh" + "path": "./examples/resources/awscc_apigateway_vpc_link/import.sh" }, { "resource": "awscc_apigatewayv2_api", "identifier": "ApiId", - "path": "../../examples/resources/awscc_apigatewayv2_api/import.sh" + "path": "./examples/resources/awscc_apigatewayv2_api/import.sh" }, { "resource": "awscc_apigatewayv2_api_mapping", "identifier": "ApiMappingId,DomainName", - "path": "../../examples/resources/awscc_apigatewayv2_api_mapping/import.sh" + "path": "./examples/resources/awscc_apigatewayv2_api_mapping/import.sh" }, { "resource": "awscc_apigatewayv2_authorizer", "identifier": "AuthorizerId,ApiId", - "path": "../../examples/resources/awscc_apigatewayv2_authorizer/import.sh" + "path": "./examples/resources/awscc_apigatewayv2_authorizer/import.sh" }, { "resource": "awscc_apigatewayv2_deployment", "identifier": "ApiId,DeploymentId", - "path": "../../examples/resources/awscc_apigatewayv2_deployment/import.sh" + "path": "./examples/resources/awscc_apigatewayv2_deployment/import.sh" }, { "resource": "awscc_apigatewayv2_domain_name", "identifier": "DomainName", - "path": "../../examples/resources/awscc_apigatewayv2_domain_name/import.sh" + "path": "./examples/resources/awscc_apigatewayv2_domain_name/import.sh" }, { "resource": "awscc_apigatewayv2_integration_response", "identifier": "ApiId,IntegrationId,IntegrationResponseId", - "path": "../../examples/resources/awscc_apigatewayv2_integration_response/import.sh" + "path": "./examples/resources/awscc_apigatewayv2_integration_response/import.sh" }, { "resource": "awscc_apigatewayv2_model", "identifier": "ApiId,ModelId", - "path": "../../examples/resources/awscc_apigatewayv2_model/import.sh" + "path": "./examples/resources/awscc_apigatewayv2_model/import.sh" }, { "resource": "awscc_apigatewayv2_route", "identifier": "ApiId,RouteId", - "path": "../../examples/resources/awscc_apigatewayv2_route/import.sh" + "path": "./examples/resources/awscc_apigatewayv2_route/import.sh" }, { "resource": "awscc_apigatewayv2_route_response", "identifier": "ApiId,RouteId,RouteResponseId", - "path": "../../examples/resources/awscc_apigatewayv2_route_response/import.sh" + "path": "./examples/resources/awscc_apigatewayv2_route_response/import.sh" }, { "resource": "awscc_apigatewayv2_vpc_link", "identifier": "VpcLinkId", - "path": "../../examples/resources/awscc_apigatewayv2_vpc_link/import.sh" + "path": "./examples/resources/awscc_apigatewayv2_vpc_link/import.sh" }, { "resource": "awscc_appconfig_application", "identifier": "ApplicationId", - "path": "../../examples/resources/awscc_appconfig_application/import.sh" + "path": "./examples/resources/awscc_appconfig_application/import.sh" }, { "resource": "awscc_appconfig_configuration_profile", "identifier": "ApplicationId,ConfigurationProfileId", - "path": "../../examples/resources/awscc_appconfig_configuration_profile/import.sh" + "path": "./examples/resources/awscc_appconfig_configuration_profile/import.sh" }, { "resource": "awscc_appconfig_environment", "identifier": "ApplicationId,EnvironmentId", - "path": "../../examples/resources/awscc_appconfig_environment/import.sh" + "path": "./examples/resources/awscc_appconfig_environment/import.sh" }, { "resource": "awscc_appconfig_extension_association", "identifier": "Id", - "path": "../../examples/resources/awscc_appconfig_extension_association/import.sh" + "path": "./examples/resources/awscc_appconfig_extension_association/import.sh" }, { "resource": "awscc_appconfig_hosted_configuration_version", "identifier": "ApplicationId,ConfigurationProfileId,VersionNumber", - "path": "../../examples/resources/awscc_appconfig_hosted_configuration_version/import.sh" + "path": "./examples/resources/awscc_appconfig_hosted_configuration_version/import.sh" }, { "resource": "awscc_appflow_connector", "identifier": "ConnectorLabel", - "path": "../../examples/resources/awscc_appflow_connector/import.sh" + "path": "./examples/resources/awscc_appflow_connector/import.sh" }, { "resource": "awscc_appflow_connector_profile", "identifier": "ConnectorProfileName", - "path": "../../examples/resources/awscc_appflow_connector_profile/import.sh" + "path": "./examples/resources/awscc_appflow_connector_profile/import.sh" }, { "resource": "awscc_appflow_flow", "identifier": "FlowName", - "path": "../../examples/resources/awscc_appflow_flow/import.sh" + "path": "./examples/resources/awscc_appflow_flow/import.sh" }, { "resource": "awscc_appintegrations_application", "identifier": "ApplicationArn", - "path": "../../examples/resources/awscc_appintegrations_application/import.sh" + "path": "./examples/resources/awscc_appintegrations_application/import.sh" }, { "resource": "awscc_appintegrations_event_integration", "identifier": "Name", - "path": "../../examples/resources/awscc_appintegrations_event_integration/import.sh" + "path": "./examples/resources/awscc_appintegrations_event_integration/import.sh" }, { "resource": "awscc_apprunner_auto_scaling_configuration", "identifier": "AutoScalingConfigurationArn", - "path": "../../examples/resources/awscc_apprunner_auto_scaling_configuration/import.sh" + "path": "./examples/resources/awscc_apprunner_auto_scaling_configuration/import.sh" }, { "resource": "awscc_apprunner_observability_configuration", "identifier": "ObservabilityConfigurationArn", - "path": "../../examples/resources/awscc_apprunner_observability_configuration/import.sh" + "path": "./examples/resources/awscc_apprunner_observability_configuration/import.sh" }, { "resource": "awscc_apprunner_service", "identifier": "ServiceArn", - "path": "../../examples/resources/awscc_apprunner_service/import.sh" + "path": "./examples/resources/awscc_apprunner_service/import.sh" }, { "resource": "awscc_apprunner_vpc_connector", "identifier": "VpcConnectorArn", - "path": "../../examples/resources/awscc_apprunner_vpc_connector/import.sh" + "path": "./examples/resources/awscc_apprunner_vpc_connector/import.sh" }, { "resource": "awscc_apprunner_vpc_ingress_connection", "identifier": "VpcIngressConnectionArn", - "path": "../../examples/resources/awscc_apprunner_vpc_ingress_connection/import.sh" + "path": "./examples/resources/awscc_apprunner_vpc_ingress_connection/import.sh" }, { "resource": "awscc_appstream_app_block", "identifier": "Arn", - "path": "../../examples/resources/awscc_appstream_app_block/import.sh" + "path": "./examples/resources/awscc_appstream_app_block/import.sh" }, { "resource": "awscc_appstream_app_block_builder", "identifier": "Name", - "path": "../../examples/resources/awscc_appstream_app_block_builder/import.sh" + "path": "./examples/resources/awscc_appstream_app_block_builder/import.sh" }, { "resource": "awscc_appstream_application", "identifier": "Arn", - "path": "../../examples/resources/awscc_appstream_application/import.sh" + "path": "./examples/resources/awscc_appstream_application/import.sh" }, { "resource": "awscc_appstream_application_entitlement_association", "identifier": "StackName,EntitlementName,ApplicationIdentifier", - "path": "../../examples/resources/awscc_appstream_application_entitlement_association/import.sh" + "path": "./examples/resources/awscc_appstream_application_entitlement_association/import.sh" }, { "resource": "awscc_appstream_application_fleet_association", "identifier": "FleetName,ApplicationArn", - "path": "../../examples/resources/awscc_appstream_application_fleet_association/import.sh" + "path": "./examples/resources/awscc_appstream_application_fleet_association/import.sh" }, { "resource": "awscc_appstream_directory_config", "identifier": "DirectoryName", - "path": "../../examples/resources/awscc_appstream_directory_config/import.sh" + "path": "./examples/resources/awscc_appstream_directory_config/import.sh" }, { "resource": "awscc_appstream_entitlement", "identifier": "StackName,Name", - "path": "../../examples/resources/awscc_appstream_entitlement/import.sh" + "path": "./examples/resources/awscc_appstream_entitlement/import.sh" }, { "resource": "awscc_appstream_image_builder", "identifier": "Name", - "path": "../../examples/resources/awscc_appstream_image_builder/import.sh" + "path": "./examples/resources/awscc_appstream_image_builder/import.sh" }, { "resource": "awscc_appsync_domain_name", "identifier": "DomainName", - "path": "../../examples/resources/awscc_appsync_domain_name/import.sh" + "path": "./examples/resources/awscc_appsync_domain_name/import.sh" }, { "resource": "awscc_appsync_domain_name_api_association", "identifier": "ApiAssociationIdentifier", - "path": "../../examples/resources/awscc_appsync_domain_name_api_association/import.sh" + "path": "./examples/resources/awscc_appsync_domain_name_api_association/import.sh" }, { "resource": "awscc_appsync_function_configuration", "identifier": "FunctionArn", - "path": "../../examples/resources/awscc_appsync_function_configuration/import.sh" + "path": "./examples/resources/awscc_appsync_function_configuration/import.sh" }, { "resource": "awscc_appsync_resolver", "identifier": "ResolverArn", - "path": "../../examples/resources/awscc_appsync_resolver/import.sh" + "path": "./examples/resources/awscc_appsync_resolver/import.sh" }, { "resource": "awscc_appsync_source_api_association", "identifier": "AssociationArn", - "path": "../../examples/resources/awscc_appsync_source_api_association/import.sh" + "path": "./examples/resources/awscc_appsync_source_api_association/import.sh" }, { "resource": "awscc_apptest_test_case", "identifier": "TestCaseId", - "path": "../../examples/resources/awscc_apptest_test_case/import.sh" + "path": "./examples/resources/awscc_apptest_test_case/import.sh" }, { "resource": "awscc_applicationautoscaling_scalable_target", "identifier": "ResourceId,ScalableDimension,ServiceNamespace", - "path": "../../examples/resources/awscc_applicationautoscaling_scalable_target/import.sh" + "path": "./examples/resources/awscc_applicationautoscaling_scalable_target/import.sh" }, { "resource": "awscc_applicationautoscaling_scaling_policy", "identifier": "Arn,ScalableDimension", - "path": "../../examples/resources/awscc_applicationautoscaling_scaling_policy/import.sh" + "path": "./examples/resources/awscc_applicationautoscaling_scaling_policy/import.sh" }, { "resource": "awscc_applicationinsights_application", "identifier": "ApplicationARN", - "path": "../../examples/resources/awscc_applicationinsights_application/import.sh" + "path": "./examples/resources/awscc_applicationinsights_application/import.sh" }, { "resource": "awscc_applicationsignals_service_level_objective", "identifier": "Arn", - "path": "../../examples/resources/awscc_applicationsignals_service_level_objective/import.sh" + "path": "./examples/resources/awscc_applicationsignals_service_level_objective/import.sh" }, { "resource": "awscc_athena_capacity_reservation", "identifier": "Arn", - "path": "../../examples/resources/awscc_athena_capacity_reservation/import.sh" + "path": "./examples/resources/awscc_athena_capacity_reservation/import.sh" }, { "resource": "awscc_athena_data_catalog", "identifier": "Name", - "path": "../../examples/resources/awscc_athena_data_catalog/import.sh" + "path": "./examples/resources/awscc_athena_data_catalog/import.sh" }, { "resource": "awscc_athena_named_query", "identifier": "NamedQueryId", - "path": "../../examples/resources/awscc_athena_named_query/import.sh" + "path": "./examples/resources/awscc_athena_named_query/import.sh" }, { "resource": "awscc_athena_prepared_statement", "identifier": "StatementName,WorkGroup", - "path": "../../examples/resources/awscc_athena_prepared_statement/import.sh" + "path": "./examples/resources/awscc_athena_prepared_statement/import.sh" }, { "resource": "awscc_athena_work_group", "identifier": "Name", - "path": "../../examples/resources/awscc_athena_work_group/import.sh" + "path": "./examples/resources/awscc_athena_work_group/import.sh" }, { "resource": "awscc_auditmanager_assessment", "identifier": "AssessmentId", - "path": "../../examples/resources/awscc_auditmanager_assessment/import.sh" + "path": "./examples/resources/awscc_auditmanager_assessment/import.sh" }, { "resource": "awscc_autoscaling_auto_scaling_group", "identifier": "AutoScalingGroupName", - "path": "../../examples/resources/awscc_autoscaling_auto_scaling_group/import.sh" + "path": "./examples/resources/awscc_autoscaling_auto_scaling_group/import.sh" }, { "resource": "awscc_autoscaling_launch_configuration", "identifier": "LaunchConfigurationName", - "path": "../../examples/resources/awscc_autoscaling_launch_configuration/import.sh" + "path": "./examples/resources/awscc_autoscaling_launch_configuration/import.sh" }, { "resource": "awscc_autoscaling_lifecycle_hook", "identifier": "AutoScalingGroupName,LifecycleHookName", - "path": "../../examples/resources/awscc_autoscaling_lifecycle_hook/import.sh" + "path": "./examples/resources/awscc_autoscaling_lifecycle_hook/import.sh" }, { "resource": "awscc_autoscaling_scaling_policy", "identifier": "Arn", - "path": "../../examples/resources/awscc_autoscaling_scaling_policy/import.sh" + "path": "./examples/resources/awscc_autoscaling_scaling_policy/import.sh" }, { "resource": "awscc_autoscaling_scheduled_action", "identifier": "ScheduledActionName,AutoScalingGroupName", - "path": "../../examples/resources/awscc_autoscaling_scheduled_action/import.sh" + "path": "./examples/resources/awscc_autoscaling_scheduled_action/import.sh" }, { "resource": "awscc_autoscaling_warm_pool", "identifier": "AutoScalingGroupName", - "path": "../../examples/resources/awscc_autoscaling_warm_pool/import.sh" + "path": "./examples/resources/awscc_autoscaling_warm_pool/import.sh" }, { "resource": "awscc_b2bi_capability", "identifier": "CapabilityId", - "path": "../../examples/resources/awscc_b2bi_capability/import.sh" + "path": "./examples/resources/awscc_b2bi_capability/import.sh" }, { "resource": "awscc_b2bi_partnership", "identifier": "PartnershipId", - "path": "../../examples/resources/awscc_b2bi_partnership/import.sh" + "path": "./examples/resources/awscc_b2bi_partnership/import.sh" }, { "resource": "awscc_b2bi_profile", "identifier": "ProfileId", - "path": "../../examples/resources/awscc_b2bi_profile/import.sh" + "path": "./examples/resources/awscc_b2bi_profile/import.sh" }, { "resource": "awscc_b2bi_transformer", "identifier": "TransformerId", - "path": "../../examples/resources/awscc_b2bi_transformer/import.sh" + "path": "./examples/resources/awscc_b2bi_transformer/import.sh" }, { "resource": "awscc_backup_backup_plan", "identifier": "BackupPlanId", - "path": "../../examples/resources/awscc_backup_backup_plan/import.sh" + "path": "./examples/resources/awscc_backup_backup_plan/import.sh" }, { "resource": "awscc_backup_backup_selection", "identifier": "Id", - "path": "../../examples/resources/awscc_backup_backup_selection/import.sh" + "path": "./examples/resources/awscc_backup_backup_selection/import.sh" }, { "resource": "awscc_backup_backup_vault", "identifier": "BackupVaultName", - "path": "../../examples/resources/awscc_backup_backup_vault/import.sh" + "path": "./examples/resources/awscc_backup_backup_vault/import.sh" }, { "resource": "awscc_backup_framework", "identifier": "FrameworkArn", - "path": "../../examples/resources/awscc_backup_framework/import.sh" + "path": "./examples/resources/awscc_backup_framework/import.sh" }, { "resource": "awscc_backup_report_plan", "identifier": "ReportPlanArn", - "path": "../../examples/resources/awscc_backup_report_plan/import.sh" + "path": "./examples/resources/awscc_backup_report_plan/import.sh" }, { "resource": "awscc_backup_restore_testing_plan", "identifier": "RestoreTestingPlanName", - "path": "../../examples/resources/awscc_backup_restore_testing_plan/import.sh" + "path": "./examples/resources/awscc_backup_restore_testing_plan/import.sh" }, { "resource": "awscc_backup_restore_testing_selection", "identifier": "RestoreTestingPlanName,RestoreTestingSelectionName", - "path": "../../examples/resources/awscc_backup_restore_testing_selection/import.sh" + "path": "./examples/resources/awscc_backup_restore_testing_selection/import.sh" }, { "resource": "awscc_backupgateway_hypervisor", "identifier": "HypervisorArn", - "path": "../../examples/resources/awscc_backupgateway_hypervisor/import.sh" + "path": "./examples/resources/awscc_backupgateway_hypervisor/import.sh" }, { "resource": "awscc_batch_compute_environment", "identifier": "ComputeEnvironmentArn", - "path": "../../examples/resources/awscc_batch_compute_environment/import.sh" + "path": "./examples/resources/awscc_batch_compute_environment/import.sh" }, { "resource": "awscc_batch_job_queue", "identifier": "JobQueueArn", - "path": "../../examples/resources/awscc_batch_job_queue/import.sh" + "path": "./examples/resources/awscc_batch_job_queue/import.sh" }, { "resource": "awscc_batch_scheduling_policy", "identifier": "Arn", - "path": "../../examples/resources/awscc_batch_scheduling_policy/import.sh" + "path": "./examples/resources/awscc_batch_scheduling_policy/import.sh" }, { "resource": "awscc_bedrock_agent", "identifier": "AgentId", - "path": "../../examples/resources/awscc_bedrock_agent/import.sh" + "path": "./examples/resources/awscc_bedrock_agent/import.sh" }, { "resource": "awscc_bedrock_agent_alias", "identifier": "AgentId,AgentAliasId", - "path": "../../examples/resources/awscc_bedrock_agent_alias/import.sh" + "path": "./examples/resources/awscc_bedrock_agent_alias/import.sh" }, { "resource": "awscc_bedrock_data_source", "identifier": "KnowledgeBaseId,DataSourceId", - "path": "../../examples/resources/awscc_bedrock_data_source/import.sh" + "path": "./examples/resources/awscc_bedrock_data_source/import.sh" }, { "resource": "awscc_bedrock_flow_alias", "identifier": "Arn,FlowArn", - "path": "../../examples/resources/awscc_bedrock_flow_alias/import.sh" + "path": "./examples/resources/awscc_bedrock_flow_alias/import.sh" }, { "resource": "awscc_bedrock_flow_version", "identifier": "FlowArn,Version", - "path": "../../examples/resources/awscc_bedrock_flow_version/import.sh" + "path": "./examples/resources/awscc_bedrock_flow_version/import.sh" }, { "resource": "awscc_bedrock_guardrail", "identifier": "GuardrailArn", - "path": "../../examples/resources/awscc_bedrock_guardrail/import.sh" + "path": "./examples/resources/awscc_bedrock_guardrail/import.sh" }, { "resource": "awscc_bedrock_guardrail_version", "identifier": "GuardrailId,Version", - "path": "../../examples/resources/awscc_bedrock_guardrail_version/import.sh" + "path": "./examples/resources/awscc_bedrock_guardrail_version/import.sh" }, { "resource": "awscc_bedrock_knowledge_base", "identifier": "KnowledgeBaseId", - "path": "../../examples/resources/awscc_bedrock_knowledge_base/import.sh" + "path": "./examples/resources/awscc_bedrock_knowledge_base/import.sh" }, { "resource": "awscc_bedrock_prompt", "identifier": "Arn", - "path": "../../examples/resources/awscc_bedrock_prompt/import.sh" + "path": "./examples/resources/awscc_bedrock_prompt/import.sh" }, { "resource": "awscc_bedrock_prompt_version", "identifier": "Arn", - "path": "../../examples/resources/awscc_bedrock_prompt_version/import.sh" + "path": "./examples/resources/awscc_bedrock_prompt_version/import.sh" }, { "resource": "awscc_billingconductor_billing_group", "identifier": "Arn", - "path": "../../examples/resources/awscc_billingconductor_billing_group/import.sh" + "path": "./examples/resources/awscc_billingconductor_billing_group/import.sh" }, { "resource": "awscc_billingconductor_custom_line_item", "identifier": "Arn", - "path": "../../examples/resources/awscc_billingconductor_custom_line_item/import.sh" + "path": "./examples/resources/awscc_billingconductor_custom_line_item/import.sh" }, { "resource": "awscc_billingconductor_pricing_plan", "identifier": "Arn", - "path": "../../examples/resources/awscc_billingconductor_pricing_plan/import.sh" + "path": "./examples/resources/awscc_billingconductor_pricing_plan/import.sh" }, { "resource": "awscc_billingconductor_pricing_rule", "identifier": "Arn", - "path": "../../examples/resources/awscc_billingconductor_pricing_rule/import.sh" + "path": "./examples/resources/awscc_billingconductor_pricing_rule/import.sh" }, { "resource": "awscc_budgets_budgets_action", "identifier": "ActionId,BudgetName", - "path": "../../examples/resources/awscc_budgets_budgets_action/import.sh" + "path": "./examples/resources/awscc_budgets_budgets_action/import.sh" }, { "resource": "awscc_ce_anomaly_monitor", "identifier": "MonitorArn", - "path": "../../examples/resources/awscc_ce_anomaly_monitor/import.sh" + "path": "./examples/resources/awscc_ce_anomaly_monitor/import.sh" }, { "resource": "awscc_ce_anomaly_subscription", "identifier": "SubscriptionArn", - "path": "../../examples/resources/awscc_ce_anomaly_subscription/import.sh" + "path": "./examples/resources/awscc_ce_anomaly_subscription/import.sh" }, { "resource": "awscc_ce_cost_category", "identifier": "Arn", - "path": "../../examples/resources/awscc_ce_cost_category/import.sh" + "path": "./examples/resources/awscc_ce_cost_category/import.sh" }, { "resource": "awscc_cur_report_definition", "identifier": "ReportName", - "path": "../../examples/resources/awscc_cur_report_definition/import.sh" + "path": "./examples/resources/awscc_cur_report_definition/import.sh" }, { "resource": "awscc_cassandra_keyspace", "identifier": "KeyspaceName", - "path": "../../examples/resources/awscc_cassandra_keyspace/import.sh" + "path": "./examples/resources/awscc_cassandra_keyspace/import.sh" }, { "resource": "awscc_cassandra_table", "identifier": "KeyspaceName,TableName", - "path": "../../examples/resources/awscc_cassandra_table/import.sh" + "path": "./examples/resources/awscc_cassandra_table/import.sh" }, { "resource": "awscc_certificatemanager_account", "identifier": "AccountId", - "path": "../../examples/resources/awscc_certificatemanager_account/import.sh" + "path": "./examples/resources/awscc_certificatemanager_account/import.sh" }, { "resource": "awscc_chatbot_microsoft_teams_channel_configuration", "identifier": "Arn", - "path": "../../examples/resources/awscc_chatbot_microsoft_teams_channel_configuration/import.sh" + "path": "./examples/resources/awscc_chatbot_microsoft_teams_channel_configuration/import.sh" }, { "resource": "awscc_chatbot_slack_channel_configuration", "identifier": "Arn", - "path": "../../examples/resources/awscc_chatbot_slack_channel_configuration/import.sh" + "path": "./examples/resources/awscc_chatbot_slack_channel_configuration/import.sh" }, { "resource": "awscc_cleanrooms_analysis_template", "identifier": "AnalysisTemplateIdentifier,MembershipIdentifier", - "path": "../../examples/resources/awscc_cleanrooms_analysis_template/import.sh" + "path": "./examples/resources/awscc_cleanrooms_analysis_template/import.sh" }, { "resource": "awscc_cleanrooms_collaboration", "identifier": "CollaborationIdentifier", - "path": "../../examples/resources/awscc_cleanrooms_collaboration/import.sh" + "path": "./examples/resources/awscc_cleanrooms_collaboration/import.sh" }, { "resource": "awscc_cleanrooms_configured_table", "identifier": "ConfiguredTableIdentifier", - "path": "../../examples/resources/awscc_cleanrooms_configured_table/import.sh" + "path": "./examples/resources/awscc_cleanrooms_configured_table/import.sh" }, { "resource": "awscc_cleanrooms_configured_table_association", "identifier": "ConfiguredTableAssociationIdentifier,MembershipIdentifier", - "path": "../../examples/resources/awscc_cleanrooms_configured_table_association/import.sh" + "path": "./examples/resources/awscc_cleanrooms_configured_table_association/import.sh" }, { "resource": "awscc_cleanrooms_id_mapping_table", "identifier": "IdMappingTableIdentifier,MembershipIdentifier", - "path": "../../examples/resources/awscc_cleanrooms_id_mapping_table/import.sh" + "path": "./examples/resources/awscc_cleanrooms_id_mapping_table/import.sh" }, { "resource": "awscc_cleanrooms_membership", "identifier": "MembershipIdentifier", - "path": "../../examples/resources/awscc_cleanrooms_membership/import.sh" + "path": "./examples/resources/awscc_cleanrooms_membership/import.sh" }, { "resource": "awscc_cleanrooms_privacy_budget_template", "identifier": "PrivacyBudgetTemplateIdentifier,MembershipIdentifier", - "path": "../../examples/resources/awscc_cleanrooms_privacy_budget_template/import.sh" + "path": "./examples/resources/awscc_cleanrooms_privacy_budget_template/import.sh" }, { "resource": "awscc_cleanroomsml_training_dataset", "identifier": "TrainingDatasetArn", - "path": "../../examples/resources/awscc_cleanroomsml_training_dataset/import.sh" + "path": "./examples/resources/awscc_cleanroomsml_training_dataset/import.sh" }, { "resource": "awscc_cloudformation_hook_default_version", "identifier": "Arn", - "path": "../../examples/resources/awscc_cloudformation_hook_default_version/import.sh" + "path": "./examples/resources/awscc_cloudformation_hook_default_version/import.sh" }, { "resource": "awscc_cloudformation_hook_type_config", "identifier": "ConfigurationArn", - "path": "../../examples/resources/awscc_cloudformation_hook_type_config/import.sh" + "path": "./examples/resources/awscc_cloudformation_hook_type_config/import.sh" }, { "resource": "awscc_cloudformation_hook_version", "identifier": "Arn", - "path": "../../examples/resources/awscc_cloudformation_hook_version/import.sh" + "path": "./examples/resources/awscc_cloudformation_hook_version/import.sh" }, { "resource": "awscc_cloudformation_module_default_version", "identifier": "Arn", - "path": "../../examples/resources/awscc_cloudformation_module_default_version/import.sh" + "path": "./examples/resources/awscc_cloudformation_module_default_version/import.sh" }, { "resource": "awscc_cloudformation_module_version", "identifier": "Arn", - "path": "../../examples/resources/awscc_cloudformation_module_version/import.sh" + "path": "./examples/resources/awscc_cloudformation_module_version/import.sh" }, { "resource": "awscc_cloudformation_public_type_version", "identifier": "PublicTypeArn", - "path": "../../examples/resources/awscc_cloudformation_public_type_version/import.sh" + "path": "./examples/resources/awscc_cloudformation_public_type_version/import.sh" }, { "resource": "awscc_cloudformation_publisher", "identifier": "PublisherId", - "path": "../../examples/resources/awscc_cloudformation_publisher/import.sh" + "path": "./examples/resources/awscc_cloudformation_publisher/import.sh" }, { "resource": "awscc_cloudformation_resource_default_version", "identifier": "Arn", - "path": "../../examples/resources/awscc_cloudformation_resource_default_version/import.sh" + "path": "./examples/resources/awscc_cloudformation_resource_default_version/import.sh" }, { "resource": "awscc_cloudformation_resource_version", "identifier": "Arn", - "path": "../../examples/resources/awscc_cloudformation_resource_version/import.sh" + "path": "./examples/resources/awscc_cloudformation_resource_version/import.sh" }, { "resource": "awscc_cloudformation_stack", "identifier": "StackId", - "path": "../../examples/resources/awscc_cloudformation_stack/import.sh" + "path": "./examples/resources/awscc_cloudformation_stack/import.sh" }, { "resource": "awscc_cloudformation_stack_set", "identifier": "StackSetId", - "path": "../../examples/resources/awscc_cloudformation_stack_set/import.sh" + "path": "./examples/resources/awscc_cloudformation_stack_set/import.sh" }, { "resource": "awscc_cloudformation_type_activation", "identifier": "Arn", - "path": "../../examples/resources/awscc_cloudformation_type_activation/import.sh" + "path": "./examples/resources/awscc_cloudformation_type_activation/import.sh" }, { "resource": "awscc_cloudfront_cache_policy", "identifier": "Id", - "path": "../../examples/resources/awscc_cloudfront_cache_policy/import.sh" + "path": "./examples/resources/awscc_cloudfront_cache_policy/import.sh" }, { "resource": "awscc_cloudfront_cloudfront_origin_access_identity", "identifier": "Id", - "path": "../../examples/resources/awscc_cloudfront_cloudfront_origin_access_identity/import.sh" + "path": "./examples/resources/awscc_cloudfront_cloudfront_origin_access_identity/import.sh" }, { "resource": "awscc_cloudfront_continuous_deployment_policy", "identifier": "Id", - "path": "../../examples/resources/awscc_cloudfront_continuous_deployment_policy/import.sh" + "path": "./examples/resources/awscc_cloudfront_continuous_deployment_policy/import.sh" }, { "resource": "awscc_cloudfront_distribution", "identifier": "Id", - "path": "../../examples/resources/awscc_cloudfront_distribution/import.sh" + "path": "./examples/resources/awscc_cloudfront_distribution/import.sh" }, { "resource": "awscc_cloudfront_function", "identifier": "FunctionARN", - "path": "../../examples/resources/awscc_cloudfront_function/import.sh" + "path": "./examples/resources/awscc_cloudfront_function/import.sh" }, { "resource": "awscc_cloudfront_key_group", "identifier": "Id", - "path": "../../examples/resources/awscc_cloudfront_key_group/import.sh" + "path": "./examples/resources/awscc_cloudfront_key_group/import.sh" }, { "resource": "awscc_cloudfront_key_value_store", "identifier": "Name", - "path": "../../examples/resources/awscc_cloudfront_key_value_store/import.sh" + "path": "./examples/resources/awscc_cloudfront_key_value_store/import.sh" }, { "resource": "awscc_cloudfront_monitoring_subscription", "identifier": "DistributionId", - "path": "../../examples/resources/awscc_cloudfront_monitoring_subscription/import.sh" + "path": "./examples/resources/awscc_cloudfront_monitoring_subscription/import.sh" }, { "resource": "awscc_cloudfront_origin_access_control", "identifier": "Id", - "path": "../../examples/resources/awscc_cloudfront_origin_access_control/import.sh" + "path": "./examples/resources/awscc_cloudfront_origin_access_control/import.sh" }, { "resource": "awscc_cloudfront_origin_request_policy", "identifier": "Id", - "path": "../../examples/resources/awscc_cloudfront_origin_request_policy/import.sh" + "path": "./examples/resources/awscc_cloudfront_origin_request_policy/import.sh" }, { "resource": "awscc_cloudfront_public_key", "identifier": "Id", - "path": "../../examples/resources/awscc_cloudfront_public_key/import.sh" + "path": "./examples/resources/awscc_cloudfront_public_key/import.sh" }, { "resource": "awscc_cloudfront_realtime_log_config", "identifier": "Arn", - "path": "../../examples/resources/awscc_cloudfront_realtime_log_config/import.sh" + "path": "./examples/resources/awscc_cloudfront_realtime_log_config/import.sh" }, { "resource": "awscc_cloudfront_response_headers_policy", "identifier": "Id", - "path": "../../examples/resources/awscc_cloudfront_response_headers_policy/import.sh" + "path": "./examples/resources/awscc_cloudfront_response_headers_policy/import.sh" }, { "resource": "awscc_cloudtrail_channel", "identifier": "ChannelArn", - "path": "../../examples/resources/awscc_cloudtrail_channel/import.sh" + "path": "./examples/resources/awscc_cloudtrail_channel/import.sh" }, { "resource": "awscc_cloudtrail_event_data_store", "identifier": "EventDataStoreArn", - "path": "../../examples/resources/awscc_cloudtrail_event_data_store/import.sh" + "path": "./examples/resources/awscc_cloudtrail_event_data_store/import.sh" }, { "resource": "awscc_cloudtrail_resource_policy", "identifier": "ResourceArn", - "path": "../../examples/resources/awscc_cloudtrail_resource_policy/import.sh" + "path": "./examples/resources/awscc_cloudtrail_resource_policy/import.sh" }, { "resource": "awscc_cloudtrail_trail", "identifier": "TrailName", - "path": "../../examples/resources/awscc_cloudtrail_trail/import.sh" + "path": "./examples/resources/awscc_cloudtrail_trail/import.sh" }, { "resource": "awscc_cloudwatch_alarm", "identifier": "AlarmName", - "path": "../../examples/resources/awscc_cloudwatch_alarm/import.sh" + "path": "./examples/resources/awscc_cloudwatch_alarm/import.sh" }, { "resource": "awscc_cloudwatch_composite_alarm", "identifier": "AlarmName", - "path": "../../examples/resources/awscc_cloudwatch_composite_alarm/import.sh" + "path": "./examples/resources/awscc_cloudwatch_composite_alarm/import.sh" }, { "resource": "awscc_cloudwatch_dashboard", "identifier": "DashboardName", - "path": "../../examples/resources/awscc_cloudwatch_dashboard/import.sh" + "path": "./examples/resources/awscc_cloudwatch_dashboard/import.sh" }, { "resource": "awscc_cloudwatch_metric_stream", "identifier": "Name", - "path": "../../examples/resources/awscc_cloudwatch_metric_stream/import.sh" + "path": "./examples/resources/awscc_cloudwatch_metric_stream/import.sh" }, { "resource": "awscc_codeartifact_domain", "identifier": "Arn", - "path": "../../examples/resources/awscc_codeartifact_domain/import.sh" + "path": "./examples/resources/awscc_codeartifact_domain/import.sh" }, { "resource": "awscc_codeartifact_package_group", "identifier": "Arn", - "path": "../../examples/resources/awscc_codeartifact_package_group/import.sh" + "path": "./examples/resources/awscc_codeartifact_package_group/import.sh" }, { "resource": "awscc_codeartifact_repository", "identifier": "Arn", - "path": "../../examples/resources/awscc_codeartifact_repository/import.sh" + "path": "./examples/resources/awscc_codeartifact_repository/import.sh" }, { "resource": "awscc_codebuild_fleet", "identifier": "Arn", - "path": "../../examples/resources/awscc_codebuild_fleet/import.sh" + "path": "./examples/resources/awscc_codebuild_fleet/import.sh" }, { "resource": "awscc_codeconnections_connection", "identifier": "ConnectionArn", - "path": "../../examples/resources/awscc_codeconnections_connection/import.sh" + "path": "./examples/resources/awscc_codeconnections_connection/import.sh" }, { "resource": "awscc_codedeploy_application", "identifier": "ApplicationName", - "path": "../../examples/resources/awscc_codedeploy_application/import.sh" + "path": "./examples/resources/awscc_codedeploy_application/import.sh" }, { "resource": "awscc_codedeploy_deployment_config", "identifier": "DeploymentConfigName", - "path": "../../examples/resources/awscc_codedeploy_deployment_config/import.sh" + "path": "./examples/resources/awscc_codedeploy_deployment_config/import.sh" }, { "resource": "awscc_codeguruprofiler_profiling_group", "identifier": "ProfilingGroupName", - "path": "../../examples/resources/awscc_codeguruprofiler_profiling_group/import.sh" + "path": "./examples/resources/awscc_codeguruprofiler_profiling_group/import.sh" }, { "resource": "awscc_codegurureviewer_repository_association", "identifier": "AssociationArn", - "path": "../../examples/resources/awscc_codegurureviewer_repository_association/import.sh" + "path": "./examples/resources/awscc_codegurureviewer_repository_association/import.sh" }, { "resource": "awscc_codepipeline_custom_action_type", "identifier": "Category,Provider,Version", - "path": "../../examples/resources/awscc_codepipeline_custom_action_type/import.sh" + "path": "./examples/resources/awscc_codepipeline_custom_action_type/import.sh" }, { "resource": "awscc_codepipeline_pipeline", "identifier": "Name", - "path": "../../examples/resources/awscc_codepipeline_pipeline/import.sh" + "path": "./examples/resources/awscc_codepipeline_pipeline/import.sh" }, { "resource": "awscc_codestarconnections_connection", "identifier": "ConnectionArn", - "path": "../../examples/resources/awscc_codestarconnections_connection/import.sh" + "path": "./examples/resources/awscc_codestarconnections_connection/import.sh" }, { "resource": "awscc_codestarconnections_repository_link", "identifier": "RepositoryLinkArn", - "path": "../../examples/resources/awscc_codestarconnections_repository_link/import.sh" + "path": "./examples/resources/awscc_codestarconnections_repository_link/import.sh" }, { "resource": "awscc_codestarconnections_sync_configuration", "identifier": "ResourceName,SyncType", - "path": "../../examples/resources/awscc_codestarconnections_sync_configuration/import.sh" + "path": "./examples/resources/awscc_codestarconnections_sync_configuration/import.sh" }, { "resource": "awscc_codestarnotifications_notification_rule", "identifier": "Arn", - "path": "../../examples/resources/awscc_codestarnotifications_notification_rule/import.sh" + "path": "./examples/resources/awscc_codestarnotifications_notification_rule/import.sh" }, { "resource": "awscc_cognito_identity_pool", "identifier": "Id", - "path": "../../examples/resources/awscc_cognito_identity_pool/import.sh" + "path": "./examples/resources/awscc_cognito_identity_pool/import.sh" }, { "resource": "awscc_cognito_identity_pool_principal_tag", "identifier": "IdentityPoolId,IdentityProviderName", - "path": "../../examples/resources/awscc_cognito_identity_pool_principal_tag/import.sh" + "path": "./examples/resources/awscc_cognito_identity_pool_principal_tag/import.sh" }, { "resource": "awscc_cognito_identity_pool_role_attachment", "identifier": "Id", - "path": "../../examples/resources/awscc_cognito_identity_pool_role_attachment/import.sh" + "path": "./examples/resources/awscc_cognito_identity_pool_role_attachment/import.sh" }, { "resource": "awscc_cognito_log_delivery_configuration", "identifier": "Id", - "path": "../../examples/resources/awscc_cognito_log_delivery_configuration/import.sh" + "path": "./examples/resources/awscc_cognito_log_delivery_configuration/import.sh" }, { "resource": "awscc_cognito_user_pool_client", "identifier": "UserPoolId,ClientId", - "path": "../../examples/resources/awscc_cognito_user_pool_client/import.sh" + "path": "./examples/resources/awscc_cognito_user_pool_client/import.sh" }, { "resource": "awscc_cognito_user_pool_group", "identifier": "UserPoolId,GroupName", - "path": "../../examples/resources/awscc_cognito_user_pool_group/import.sh" + "path": "./examples/resources/awscc_cognito_user_pool_group/import.sh" }, { "resource": "awscc_cognito_user_pool_resource_server", "identifier": "UserPoolId,Identifier", - "path": "../../examples/resources/awscc_cognito_user_pool_resource_server/import.sh" + "path": "./examples/resources/awscc_cognito_user_pool_resource_server/import.sh" }, { "resource": "awscc_cognito_user_pool_risk_configuration_attachment", "identifier": "UserPoolId,ClientId", - "path": "../../examples/resources/awscc_cognito_user_pool_risk_configuration_attachment/import.sh" + "path": "./examples/resources/awscc_cognito_user_pool_risk_configuration_attachment/import.sh" }, { "resource": "awscc_cognito_user_pool_ui_customization_attachment", "identifier": "UserPoolId,ClientId", - "path": "../../examples/resources/awscc_cognito_user_pool_ui_customization_attachment/import.sh" + "path": "./examples/resources/awscc_cognito_user_pool_ui_customization_attachment/import.sh" }, { "resource": "awscc_cognito_user_pool_user", "identifier": "UserPoolId,Username", - "path": "../../examples/resources/awscc_cognito_user_pool_user/import.sh" + "path": "./examples/resources/awscc_cognito_user_pool_user/import.sh" }, { "resource": "awscc_cognito_user_pool_user_to_group_attachment", "identifier": "UserPoolId,GroupName,Username", - "path": "../../examples/resources/awscc_cognito_user_pool_user_to_group_attachment/import.sh" + "path": "./examples/resources/awscc_cognito_user_pool_user_to_group_attachment/import.sh" }, { "resource": "awscc_comprehend_document_classifier", "identifier": "Arn", - "path": "../../examples/resources/awscc_comprehend_document_classifier/import.sh" + "path": "./examples/resources/awscc_comprehend_document_classifier/import.sh" }, { "resource": "awscc_comprehend_flywheel", "identifier": "Arn", - "path": "../../examples/resources/awscc_comprehend_flywheel/import.sh" + "path": "./examples/resources/awscc_comprehend_flywheel/import.sh" }, { "resource": "awscc_config_aggregation_authorization", "identifier": "AuthorizedAccountId,AuthorizedAwsRegion", - "path": "../../examples/resources/awscc_config_aggregation_authorization/import.sh" + "path": "./examples/resources/awscc_config_aggregation_authorization/import.sh" }, { "resource": "awscc_config_config_rule", "identifier": "ConfigRuleName", - "path": "../../examples/resources/awscc_config_config_rule/import.sh" + "path": "./examples/resources/awscc_config_config_rule/import.sh" }, { "resource": "awscc_config_configuration_aggregator", "identifier": "ConfigurationAggregatorName", - "path": "../../examples/resources/awscc_config_configuration_aggregator/import.sh" + "path": "./examples/resources/awscc_config_configuration_aggregator/import.sh" }, { "resource": "awscc_config_conformance_pack", "identifier": "ConformancePackName", - "path": "../../examples/resources/awscc_config_conformance_pack/import.sh" + "path": "./examples/resources/awscc_config_conformance_pack/import.sh" }, { "resource": "awscc_config_organization_conformance_pack", "identifier": "OrganizationConformancePackName", - "path": "../../examples/resources/awscc_config_organization_conformance_pack/import.sh" + "path": "./examples/resources/awscc_config_organization_conformance_pack/import.sh" }, { "resource": "awscc_config_stored_query", "identifier": "QueryName", - "path": "../../examples/resources/awscc_config_stored_query/import.sh" + "path": "./examples/resources/awscc_config_stored_query/import.sh" }, { "resource": "awscc_connect_approved_origin", "identifier": "InstanceId,Origin", - "path": "../../examples/resources/awscc_connect_approved_origin/import.sh" + "path": "./examples/resources/awscc_connect_approved_origin/import.sh" }, { "resource": "awscc_connect_contact_flow", "identifier": "ContactFlowArn", - "path": "../../examples/resources/awscc_connect_contact_flow/import.sh" + "path": "./examples/resources/awscc_connect_contact_flow/import.sh" }, { "resource": "awscc_connect_contact_flow_module", "identifier": "ContactFlowModuleArn", - "path": "../../examples/resources/awscc_connect_contact_flow_module/import.sh" + "path": "./examples/resources/awscc_connect_contact_flow_module/import.sh" }, { "resource": "awscc_connect_hours_of_operation", "identifier": "HoursOfOperationArn", - "path": "../../examples/resources/awscc_connect_hours_of_operation/import.sh" + "path": "./examples/resources/awscc_connect_hours_of_operation/import.sh" }, { "resource": "awscc_connect_instance", "identifier": "Arn", - "path": "../../examples/resources/awscc_connect_instance/import.sh" + "path": "./examples/resources/awscc_connect_instance/import.sh" }, { "resource": "awscc_connect_instance_storage_config", "identifier": "InstanceArn,AssociationId,ResourceType", - "path": "../../examples/resources/awscc_connect_instance_storage_config/import.sh" + "path": "./examples/resources/awscc_connect_instance_storage_config/import.sh" }, { "resource": "awscc_connect_integration_association", "identifier": "InstanceId,IntegrationType,IntegrationArn", - "path": "../../examples/resources/awscc_connect_integration_association/import.sh" + "path": "./examples/resources/awscc_connect_integration_association/import.sh" }, { "resource": "awscc_connect_phone_number", "identifier": "PhoneNumberArn", - "path": "../../examples/resources/awscc_connect_phone_number/import.sh" + "path": "./examples/resources/awscc_connect_phone_number/import.sh" }, { "resource": "awscc_connect_predefined_attribute", "identifier": "InstanceArn,Name", - "path": "../../examples/resources/awscc_connect_predefined_attribute/import.sh" + "path": "./examples/resources/awscc_connect_predefined_attribute/import.sh" }, { "resource": "awscc_connect_prompt", "identifier": "PromptArn", - "path": "../../examples/resources/awscc_connect_prompt/import.sh" + "path": "./examples/resources/awscc_connect_prompt/import.sh" }, { "resource": "awscc_connect_queue", "identifier": "QueueArn", - "path": "../../examples/resources/awscc_connect_queue/import.sh" + "path": "./examples/resources/awscc_connect_queue/import.sh" }, { "resource": "awscc_connect_quick_connect", "identifier": "QuickConnectArn", - "path": "../../examples/resources/awscc_connect_quick_connect/import.sh" + "path": "./examples/resources/awscc_connect_quick_connect/import.sh" }, { "resource": "awscc_connect_routing_profile", "identifier": "RoutingProfileArn", - "path": "../../examples/resources/awscc_connect_routing_profile/import.sh" + "path": "./examples/resources/awscc_connect_routing_profile/import.sh" }, { "resource": "awscc_connect_security_key", "identifier": "InstanceId,AssociationId", - "path": "../../examples/resources/awscc_connect_security_key/import.sh" + "path": "./examples/resources/awscc_connect_security_key/import.sh" }, { "resource": "awscc_connect_security_profile", "identifier": "SecurityProfileArn", - "path": "../../examples/resources/awscc_connect_security_profile/import.sh" + "path": "./examples/resources/awscc_connect_security_profile/import.sh" }, { "resource": "awscc_connect_task_template", "identifier": "Arn", - "path": "../../examples/resources/awscc_connect_task_template/import.sh" + "path": "./examples/resources/awscc_connect_task_template/import.sh" }, { "resource": "awscc_connect_traffic_distribution_group", "identifier": "TrafficDistributionGroupArn", - "path": "../../examples/resources/awscc_connect_traffic_distribution_group/import.sh" + "path": "./examples/resources/awscc_connect_traffic_distribution_group/import.sh" }, { "resource": "awscc_connect_user", "identifier": "UserArn", - "path": "../../examples/resources/awscc_connect_user/import.sh" + "path": "./examples/resources/awscc_connect_user/import.sh" }, { "resource": "awscc_connect_user_hierarchy_group", "identifier": "UserHierarchyGroupArn", - "path": "../../examples/resources/awscc_connect_user_hierarchy_group/import.sh" + "path": "./examples/resources/awscc_connect_user_hierarchy_group/import.sh" }, { "resource": "awscc_connect_view", "identifier": "ViewArn", - "path": "../../examples/resources/awscc_connect_view/import.sh" + "path": "./examples/resources/awscc_connect_view/import.sh" }, { "resource": "awscc_connect_view_version", "identifier": "ViewVersionArn", - "path": "../../examples/resources/awscc_connect_view_version/import.sh" + "path": "./examples/resources/awscc_connect_view_version/import.sh" }, { "resource": "awscc_connectcampaigns_campaign", "identifier": "Arn", - "path": "../../examples/resources/awscc_connectcampaigns_campaign/import.sh" + "path": "./examples/resources/awscc_connectcampaigns_campaign/import.sh" }, { "resource": "awscc_controltower_enabled_control", "identifier": "TargetIdentifier,ControlIdentifier", - "path": "../../examples/resources/awscc_controltower_enabled_control/import.sh" + "path": "./examples/resources/awscc_controltower_enabled_control/import.sh" }, { "resource": "awscc_customerprofiles_calculated_attribute_definition", "identifier": "DomainName,CalculatedAttributeName", - "path": "../../examples/resources/awscc_customerprofiles_calculated_attribute_definition/import.sh" + "path": "./examples/resources/awscc_customerprofiles_calculated_attribute_definition/import.sh" }, { "resource": "awscc_customerprofiles_domain", "identifier": "DomainName", - "path": "../../examples/resources/awscc_customerprofiles_domain/import.sh" + "path": "./examples/resources/awscc_customerprofiles_domain/import.sh" }, { "resource": "awscc_customerprofiles_event_stream", "identifier": "DomainName,EventStreamName", - "path": "../../examples/resources/awscc_customerprofiles_event_stream/import.sh" + "path": "./examples/resources/awscc_customerprofiles_event_stream/import.sh" }, { "resource": "awscc_customerprofiles_integration", "identifier": "DomainName,Uri", - "path": "../../examples/resources/awscc_customerprofiles_integration/import.sh" + "path": "./examples/resources/awscc_customerprofiles_integration/import.sh" }, { "resource": "awscc_customerprofiles_object_type", "identifier": "DomainName,ObjectTypeName", - "path": "../../examples/resources/awscc_customerprofiles_object_type/import.sh" + "path": "./examples/resources/awscc_customerprofiles_object_type/import.sh" }, { "resource": "awscc_dms_data_provider", "identifier": "DataProviderArn", - "path": "../../examples/resources/awscc_dms_data_provider/import.sh" + "path": "./examples/resources/awscc_dms_data_provider/import.sh" }, { "resource": "awscc_dms_instance_profile", "identifier": "InstanceProfileArn", - "path": "../../examples/resources/awscc_dms_instance_profile/import.sh" + "path": "./examples/resources/awscc_dms_instance_profile/import.sh" }, { "resource": "awscc_dms_migration_project", "identifier": "MigrationProjectArn", - "path": "../../examples/resources/awscc_dms_migration_project/import.sh" + "path": "./examples/resources/awscc_dms_migration_project/import.sh" }, { "resource": "awscc_dms_replication_config", "identifier": "ReplicationConfigArn", - "path": "../../examples/resources/awscc_dms_replication_config/import.sh" + "path": "./examples/resources/awscc_dms_replication_config/import.sh" }, { "resource": "awscc_databrew_dataset", "identifier": "Name", - "path": "../../examples/resources/awscc_databrew_dataset/import.sh" + "path": "./examples/resources/awscc_databrew_dataset/import.sh" }, { "resource": "awscc_databrew_job", "identifier": "Name", - "path": "../../examples/resources/awscc_databrew_job/import.sh" + "path": "./examples/resources/awscc_databrew_job/import.sh" }, { "resource": "awscc_databrew_project", "identifier": "Name", - "path": "../../examples/resources/awscc_databrew_project/import.sh" + "path": "./examples/resources/awscc_databrew_project/import.sh" }, { "resource": "awscc_databrew_ruleset", "identifier": "Name", - "path": "../../examples/resources/awscc_databrew_ruleset/import.sh" + "path": "./examples/resources/awscc_databrew_ruleset/import.sh" }, { "resource": "awscc_databrew_schedule", "identifier": "Name", - "path": "../../examples/resources/awscc_databrew_schedule/import.sh" + "path": "./examples/resources/awscc_databrew_schedule/import.sh" }, { "resource": "awscc_datapipeline_pipeline", "identifier": "PipelineId", - "path": "../../examples/resources/awscc_datapipeline_pipeline/import.sh" + "path": "./examples/resources/awscc_datapipeline_pipeline/import.sh" }, { "resource": "awscc_datasync_agent", "identifier": "AgentArn", - "path": "../../examples/resources/awscc_datasync_agent/import.sh" + "path": "./examples/resources/awscc_datasync_agent/import.sh" }, { "resource": "awscc_datasync_location_azure_blob", "identifier": "LocationArn", - "path": "../../examples/resources/awscc_datasync_location_azure_blob/import.sh" + "path": "./examples/resources/awscc_datasync_location_azure_blob/import.sh" }, { "resource": "awscc_datasync_location_efs", "identifier": "LocationArn", - "path": "../../examples/resources/awscc_datasync_location_efs/import.sh" + "path": "./examples/resources/awscc_datasync_location_efs/import.sh" }, { "resource": "awscc_datasync_location_fsx_lustre", "identifier": "LocationArn", - "path": "../../examples/resources/awscc_datasync_location_fsx_lustre/import.sh" + "path": "./examples/resources/awscc_datasync_location_fsx_lustre/import.sh" }, { "resource": "awscc_datasync_location_fsx_ontap", "identifier": "LocationArn", - "path": "../../examples/resources/awscc_datasync_location_fsx_ontap/import.sh" + "path": "./examples/resources/awscc_datasync_location_fsx_ontap/import.sh" }, { "resource": "awscc_datasync_location_fsx_open_zfs", "identifier": "LocationArn", - "path": "../../examples/resources/awscc_datasync_location_fsx_open_zfs/import.sh" + "path": "./examples/resources/awscc_datasync_location_fsx_open_zfs/import.sh" }, { "resource": "awscc_datasync_location_fsx_windows", "identifier": "LocationArn", - "path": "../../examples/resources/awscc_datasync_location_fsx_windows/import.sh" + "path": "./examples/resources/awscc_datasync_location_fsx_windows/import.sh" }, { "resource": "awscc_datasync_location_hdfs", "identifier": "LocationArn", - "path": "../../examples/resources/awscc_datasync_location_hdfs/import.sh" + "path": "./examples/resources/awscc_datasync_location_hdfs/import.sh" }, { "resource": "awscc_datasync_location_nfs", "identifier": "LocationArn", - "path": "../../examples/resources/awscc_datasync_location_nfs/import.sh" + "path": "./examples/resources/awscc_datasync_location_nfs/import.sh" }, { "resource": "awscc_datasync_location_object_storage", "identifier": "LocationArn", - "path": "../../examples/resources/awscc_datasync_location_object_storage/import.sh" + "path": "./examples/resources/awscc_datasync_location_object_storage/import.sh" }, { "resource": "awscc_datasync_location_s3", "identifier": "LocationArn", - "path": "../../examples/resources/awscc_datasync_location_s3/import.sh" + "path": "./examples/resources/awscc_datasync_location_s3/import.sh" }, { "resource": "awscc_datasync_location_smb", "identifier": "LocationArn", - "path": "../../examples/resources/awscc_datasync_location_smb/import.sh" + "path": "./examples/resources/awscc_datasync_location_smb/import.sh" }, { "resource": "awscc_datasync_storage_system", "identifier": "StorageSystemArn", - "path": "../../examples/resources/awscc_datasync_storage_system/import.sh" + "path": "./examples/resources/awscc_datasync_storage_system/import.sh" }, { "resource": "awscc_datasync_task", "identifier": "TaskArn", - "path": "../../examples/resources/awscc_datasync_task/import.sh" + "path": "./examples/resources/awscc_datasync_task/import.sh" }, { "resource": "awscc_datazone_data_source", "identifier": "DomainId,Id", - "path": "../../examples/resources/awscc_datazone_data_source/import.sh" + "path": "./examples/resources/awscc_datazone_data_source/import.sh" }, { "resource": "awscc_datazone_domain", "identifier": "Id", - "path": "../../examples/resources/awscc_datazone_domain/import.sh" + "path": "./examples/resources/awscc_datazone_domain/import.sh" }, { "resource": "awscc_datazone_environment", "identifier": "DomainId,Id", - "path": "../../examples/resources/awscc_datazone_environment/import.sh" + "path": "./examples/resources/awscc_datazone_environment/import.sh" }, { "resource": "awscc_datazone_environment_blueprint_configuration", "identifier": "DomainId,EnvironmentBlueprintId", - "path": "../../examples/resources/awscc_datazone_environment_blueprint_configuration/import.sh" + "path": "./examples/resources/awscc_datazone_environment_blueprint_configuration/import.sh" }, { "resource": "awscc_datazone_environment_profile", "identifier": "DomainId,Id", - "path": "../../examples/resources/awscc_datazone_environment_profile/import.sh" + "path": "./examples/resources/awscc_datazone_environment_profile/import.sh" }, { "resource": "awscc_datazone_group_profile", "identifier": "DomainId,Id", - "path": "../../examples/resources/awscc_datazone_group_profile/import.sh" + "path": "./examples/resources/awscc_datazone_group_profile/import.sh" }, { "resource": "awscc_datazone_project", "identifier": "DomainId,Id", - "path": "../../examples/resources/awscc_datazone_project/import.sh" + "path": "./examples/resources/awscc_datazone_project/import.sh" }, { "resource": "awscc_datazone_project_membership", "identifier": "DomainIdentifier,MemberIdentifier,MemberIdentifierType,ProjectIdentifier", - "path": "../../examples/resources/awscc_datazone_project_membership/import.sh" + "path": "./examples/resources/awscc_datazone_project_membership/import.sh" }, { "resource": "awscc_datazone_subscription_target", "identifier": "DomainId,EnvironmentId,Id", - "path": "../../examples/resources/awscc_datazone_subscription_target/import.sh" + "path": "./examples/resources/awscc_datazone_subscription_target/import.sh" }, { "resource": "awscc_datazone_user_profile", "identifier": "DomainId,Id", - "path": "../../examples/resources/awscc_datazone_user_profile/import.sh" + "path": "./examples/resources/awscc_datazone_user_profile/import.sh" }, { "resource": "awscc_deadline_farm", "identifier": "Arn", - "path": "../../examples/resources/awscc_deadline_farm/import.sh" + "path": "./examples/resources/awscc_deadline_farm/import.sh" }, { "resource": "awscc_deadline_fleet", "identifier": "Arn", - "path": "../../examples/resources/awscc_deadline_fleet/import.sh" + "path": "./examples/resources/awscc_deadline_fleet/import.sh" }, { "resource": "awscc_deadline_license_endpoint", "identifier": "Arn", - "path": "../../examples/resources/awscc_deadline_license_endpoint/import.sh" + "path": "./examples/resources/awscc_deadline_license_endpoint/import.sh" }, { "resource": "awscc_deadline_metered_product", "identifier": "Arn", - "path": "../../examples/resources/awscc_deadline_metered_product/import.sh" + "path": "./examples/resources/awscc_deadline_metered_product/import.sh" }, { "resource": "awscc_deadline_monitor", "identifier": "Arn", - "path": "../../examples/resources/awscc_deadline_monitor/import.sh" + "path": "./examples/resources/awscc_deadline_monitor/import.sh" }, { "resource": "awscc_deadline_queue", "identifier": "Arn", - "path": "../../examples/resources/awscc_deadline_queue/import.sh" + "path": "./examples/resources/awscc_deadline_queue/import.sh" }, { "resource": "awscc_deadline_queue_environment", "identifier": "FarmId,QueueId,QueueEnvironmentId", - "path": "../../examples/resources/awscc_deadline_queue_environment/import.sh" + "path": "./examples/resources/awscc_deadline_queue_environment/import.sh" }, { "resource": "awscc_deadline_queue_fleet_association", "identifier": "FarmId,FleetId,QueueId", - "path": "../../examples/resources/awscc_deadline_queue_fleet_association/import.sh" + "path": "./examples/resources/awscc_deadline_queue_fleet_association/import.sh" }, { "resource": "awscc_deadline_storage_profile", "identifier": "FarmId,StorageProfileId", - "path": "../../examples/resources/awscc_deadline_storage_profile/import.sh" + "path": "./examples/resources/awscc_deadline_storage_profile/import.sh" }, { "resource": "awscc_detective_graph", "identifier": "Arn", - "path": "../../examples/resources/awscc_detective_graph/import.sh" + "path": "./examples/resources/awscc_detective_graph/import.sh" }, { "resource": "awscc_detective_member_invitation", "identifier": "GraphArn,MemberId", - "path": "../../examples/resources/awscc_detective_member_invitation/import.sh" + "path": "./examples/resources/awscc_detective_member_invitation/import.sh" }, { "resource": "awscc_detective_organization_admin", "identifier": "AccountId", - "path": "../../examples/resources/awscc_detective_organization_admin/import.sh" + "path": "./examples/resources/awscc_detective_organization_admin/import.sh" }, { "resource": "awscc_devopsguru_log_anomaly_detection_integration", "identifier": "AccountId", - "path": "../../examples/resources/awscc_devopsguru_log_anomaly_detection_integration/import.sh" + "path": "./examples/resources/awscc_devopsguru_log_anomaly_detection_integration/import.sh" }, { "resource": "awscc_devopsguru_notification_channel", "identifier": "Id", - "path": "../../examples/resources/awscc_devopsguru_notification_channel/import.sh" + "path": "./examples/resources/awscc_devopsguru_notification_channel/import.sh" }, { "resource": "awscc_devopsguru_resource_collection", "identifier": "ResourceCollectionType", - "path": "../../examples/resources/awscc_devopsguru_resource_collection/import.sh" + "path": "./examples/resources/awscc_devopsguru_resource_collection/import.sh" }, { "resource": "awscc_directoryservice_simple_ad", "identifier": "DirectoryId", - "path": "../../examples/resources/awscc_directoryservice_simple_ad/import.sh" + "path": "./examples/resources/awscc_directoryservice_simple_ad/import.sh" }, { "resource": "awscc_docdbelastic_cluster", "identifier": "ClusterArn", - "path": "../../examples/resources/awscc_docdbelastic_cluster/import.sh" + "path": "./examples/resources/awscc_docdbelastic_cluster/import.sh" }, { "resource": "awscc_dynamodb_global_table", "identifier": "TableName", - "path": "../../examples/resources/awscc_dynamodb_global_table/import.sh" + "path": "./examples/resources/awscc_dynamodb_global_table/import.sh" }, { "resource": "awscc_dynamodb_table", "identifier": "TableName", - "path": "../../examples/resources/awscc_dynamodb_table/import.sh" + "path": "./examples/resources/awscc_dynamodb_table/import.sh" }, { "resource": "awscc_ec2_capacity_reservation", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_capacity_reservation/import.sh" + "path": "./examples/resources/awscc_ec2_capacity_reservation/import.sh" }, { "resource": "awscc_ec2_capacity_reservation_fleet", "identifier": "CapacityReservationFleetId", - "path": "../../examples/resources/awscc_ec2_capacity_reservation_fleet/import.sh" + "path": "./examples/resources/awscc_ec2_capacity_reservation_fleet/import.sh" }, { "resource": "awscc_ec2_carrier_gateway", "identifier": "CarrierGatewayId", - "path": "../../examples/resources/awscc_ec2_carrier_gateway/import.sh" + "path": "./examples/resources/awscc_ec2_carrier_gateway/import.sh" }, { "resource": "awscc_ec2_customer_gateway", "identifier": "CustomerGatewayId", - "path": "../../examples/resources/awscc_ec2_customer_gateway/import.sh" + "path": "./examples/resources/awscc_ec2_customer_gateway/import.sh" }, { "resource": "awscc_ec2_dhcp_options", "identifier": "DhcpOptionsId", - "path": "../../examples/resources/awscc_ec2_dhcp_options/import.sh" + "path": "./examples/resources/awscc_ec2_dhcp_options/import.sh" }, { "resource": "awscc_ec2_ec2_fleet", "identifier": "FleetId", - "path": "../../examples/resources/awscc_ec2_ec2_fleet/import.sh" + "path": "./examples/resources/awscc_ec2_ec2_fleet/import.sh" }, { "resource": "awscc_ec2_eip", "identifier": "PublicIp,AllocationId", - "path": "../../examples/resources/awscc_ec2_eip/import.sh" + "path": "./examples/resources/awscc_ec2_eip/import.sh" }, { "resource": "awscc_ec2_eip_association", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_eip_association/import.sh" + "path": "./examples/resources/awscc_ec2_eip_association/import.sh" }, { "resource": "awscc_ec2_egress_only_internet_gateway", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_egress_only_internet_gateway/import.sh" + "path": "./examples/resources/awscc_ec2_egress_only_internet_gateway/import.sh" }, { "resource": "awscc_ec2_enclave_certificate_iam_role_association", "identifier": "CertificateArn,RoleArn", - "path": "../../examples/resources/awscc_ec2_enclave_certificate_iam_role_association/import.sh" + "path": "./examples/resources/awscc_ec2_enclave_certificate_iam_role_association/import.sh" }, { "resource": "awscc_ec2_flow_log", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_flow_log/import.sh" + "path": "./examples/resources/awscc_ec2_flow_log/import.sh" }, { "resource": "awscc_ec2_gateway_route_table_association", "identifier": "GatewayId", - "path": "../../examples/resources/awscc_ec2_gateway_route_table_association/import.sh" + "path": "./examples/resources/awscc_ec2_gateway_route_table_association/import.sh" }, { "resource": "awscc_ec2_host", "identifier": "HostId", - "path": "../../examples/resources/awscc_ec2_host/import.sh" + "path": "./examples/resources/awscc_ec2_host/import.sh" }, { "resource": "awscc_ec2_ipam", "identifier": "IpamId", - "path": "../../examples/resources/awscc_ec2_ipam/import.sh" + "path": "./examples/resources/awscc_ec2_ipam/import.sh" }, { "resource": "awscc_ec2_ipam_allocation", "identifier": "IpamPoolId,IpamPoolAllocationId,Cidr", - "path": "../../examples/resources/awscc_ec2_ipam_allocation/import.sh" + "path": "./examples/resources/awscc_ec2_ipam_allocation/import.sh" }, { "resource": "awscc_ec2_ipam_pool", "identifier": "IpamPoolId", - "path": "../../examples/resources/awscc_ec2_ipam_pool/import.sh" + "path": "./examples/resources/awscc_ec2_ipam_pool/import.sh" }, { "resource": "awscc_ec2_ipam_pool_cidr", "identifier": "IpamPoolId,IpamPoolCidrId", - "path": "../../examples/resources/awscc_ec2_ipam_pool_cidr/import.sh" + "path": "./examples/resources/awscc_ec2_ipam_pool_cidr/import.sh" }, { "resource": "awscc_ec2_ipam_resource_discovery", "identifier": "IpamResourceDiscoveryId", - "path": "../../examples/resources/awscc_ec2_ipam_resource_discovery/import.sh" + "path": "./examples/resources/awscc_ec2_ipam_resource_discovery/import.sh" }, { "resource": "awscc_ec2_ipam_resource_discovery_association", "identifier": "IpamResourceDiscoveryAssociationId", - "path": "../../examples/resources/awscc_ec2_ipam_resource_discovery_association/import.sh" + "path": "./examples/resources/awscc_ec2_ipam_resource_discovery_association/import.sh" }, { "resource": "awscc_ec2_ipam_scope", "identifier": "IpamScopeId", - "path": "../../examples/resources/awscc_ec2_ipam_scope/import.sh" + "path": "./examples/resources/awscc_ec2_ipam_scope/import.sh" }, { "resource": "awscc_ec2_instance", "identifier": "InstanceId", - "path": "../../examples/resources/awscc_ec2_instance/import.sh" + "path": "./examples/resources/awscc_ec2_instance/import.sh" }, { "resource": "awscc_ec2_instance_connect_endpoint", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_instance_connect_endpoint/import.sh" + "path": "./examples/resources/awscc_ec2_instance_connect_endpoint/import.sh" }, { "resource": "awscc_ec2_internet_gateway", "identifier": "InternetGatewayId", - "path": "../../examples/resources/awscc_ec2_internet_gateway/import.sh" + "path": "./examples/resources/awscc_ec2_internet_gateway/import.sh" }, { "resource": "awscc_ec2_key_pair", "identifier": "KeyName", - "path": "../../examples/resources/awscc_ec2_key_pair/import.sh" + "path": "./examples/resources/awscc_ec2_key_pair/import.sh" }, { "resource": "awscc_ec2_launch_template", "identifier": "LaunchTemplateId", - "path": "../../examples/resources/awscc_ec2_launch_template/import.sh" + "path": "./examples/resources/awscc_ec2_launch_template/import.sh" }, { "resource": "awscc_ec2_local_gateway_route", "identifier": "DestinationCidrBlock,LocalGatewayRouteTableId", - "path": "../../examples/resources/awscc_ec2_local_gateway_route/import.sh" + "path": "./examples/resources/awscc_ec2_local_gateway_route/import.sh" }, { "resource": "awscc_ec2_local_gateway_route_table", "identifier": "LocalGatewayRouteTableId", - "path": "../../examples/resources/awscc_ec2_local_gateway_route_table/import.sh" + "path": "./examples/resources/awscc_ec2_local_gateway_route_table/import.sh" }, { "resource": "awscc_ec2_local_gateway_route_table_vpc_association", "identifier": "LocalGatewayRouteTableVpcAssociationId", - "path": "../../examples/resources/awscc_ec2_local_gateway_route_table_vpc_association/import.sh" + "path": "./examples/resources/awscc_ec2_local_gateway_route_table_vpc_association/import.sh" }, { "resource": "awscc_ec2_local_gateway_route_table_virtual_interface_group_association", "identifier": "LocalGatewayRouteTableVirtualInterfaceGroupAssociationId", - "path": "../../examples/resources/awscc_ec2_local_gateway_route_table_virtual_interface_group_association/import.sh" + "path": "./examples/resources/awscc_ec2_local_gateway_route_table_virtual_interface_group_association/import.sh" }, { "resource": "awscc_ec2_nat_gateway", "identifier": "NatGatewayId", - "path": "../../examples/resources/awscc_ec2_nat_gateway/import.sh" + "path": "./examples/resources/awscc_ec2_nat_gateway/import.sh" }, { "resource": "awscc_ec2_network_acl", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_network_acl/import.sh" + "path": "./examples/resources/awscc_ec2_network_acl/import.sh" }, { "resource": "awscc_ec2_network_insights_access_scope", "identifier": "NetworkInsightsAccessScopeId", - "path": "../../examples/resources/awscc_ec2_network_insights_access_scope/import.sh" + "path": "./examples/resources/awscc_ec2_network_insights_access_scope/import.sh" }, { "resource": "awscc_ec2_network_insights_access_scope_analysis", "identifier": "NetworkInsightsAccessScopeAnalysisId", - "path": "../../examples/resources/awscc_ec2_network_insights_access_scope_analysis/import.sh" + "path": "./examples/resources/awscc_ec2_network_insights_access_scope_analysis/import.sh" }, { "resource": "awscc_ec2_network_insights_analysis", "identifier": "NetworkInsightsAnalysisId", - "path": "../../examples/resources/awscc_ec2_network_insights_analysis/import.sh" + "path": "./examples/resources/awscc_ec2_network_insights_analysis/import.sh" }, { "resource": "awscc_ec2_network_insights_path", "identifier": "NetworkInsightsPathId", - "path": "../../examples/resources/awscc_ec2_network_insights_path/import.sh" + "path": "./examples/resources/awscc_ec2_network_insights_path/import.sh" }, { "resource": "awscc_ec2_network_interface", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_network_interface/import.sh" + "path": "./examples/resources/awscc_ec2_network_interface/import.sh" }, { "resource": "awscc_ec2_network_interface_attachment", "identifier": "AttachmentId", - "path": "../../examples/resources/awscc_ec2_network_interface_attachment/import.sh" + "path": "./examples/resources/awscc_ec2_network_interface_attachment/import.sh" }, { "resource": "awscc_ec2_network_performance_metric_subscription", "identifier": "Source,Destination,Metric,Statistic", - "path": "../../examples/resources/awscc_ec2_network_performance_metric_subscription/import.sh" + "path": "./examples/resources/awscc_ec2_network_performance_metric_subscription/import.sh" }, { "resource": "awscc_ec2_placement_group", "identifier": "GroupName", - "path": "../../examples/resources/awscc_ec2_placement_group/import.sh" + "path": "./examples/resources/awscc_ec2_placement_group/import.sh" }, { "resource": "awscc_ec2_prefix_list", "identifier": "PrefixListId", - "path": "../../examples/resources/awscc_ec2_prefix_list/import.sh" + "path": "./examples/resources/awscc_ec2_prefix_list/import.sh" }, { "resource": "awscc_ec2_route", "identifier": "RouteTableId,CidrBlock", - "path": "../../examples/resources/awscc_ec2_route/import.sh" + "path": "./examples/resources/awscc_ec2_route/import.sh" }, { "resource": "awscc_ec2_route_table", "identifier": "RouteTableId", - "path": "../../examples/resources/awscc_ec2_route_table/import.sh" + "path": "./examples/resources/awscc_ec2_route_table/import.sh" }, { "resource": "awscc_ec2_security_group", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_security_group/import.sh" + "path": "./examples/resources/awscc_ec2_security_group/import.sh" }, { "resource": "awscc_ec2_security_group_egress", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_security_group_egress/import.sh" + "path": "./examples/resources/awscc_ec2_security_group_egress/import.sh" }, { "resource": "awscc_ec2_security_group_ingress", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_security_group_ingress/import.sh" + "path": "./examples/resources/awscc_ec2_security_group_ingress/import.sh" }, { "resource": "awscc_ec2_snapshot_block_public_access", "identifier": "AccountId", - "path": "../../examples/resources/awscc_ec2_snapshot_block_public_access/import.sh" + "path": "./examples/resources/awscc_ec2_snapshot_block_public_access/import.sh" }, { "resource": "awscc_ec2_spot_fleet", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_spot_fleet/import.sh" + "path": "./examples/resources/awscc_ec2_spot_fleet/import.sh" }, { "resource": "awscc_ec2_subnet", "identifier": "SubnetId", - "path": "../../examples/resources/awscc_ec2_subnet/import.sh" + "path": "./examples/resources/awscc_ec2_subnet/import.sh" }, { "resource": "awscc_ec2_subnet_cidr_block", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_subnet_cidr_block/import.sh" + "path": "./examples/resources/awscc_ec2_subnet_cidr_block/import.sh" }, { "resource": "awscc_ec2_subnet_network_acl_association", "identifier": "AssociationId", - "path": "../../examples/resources/awscc_ec2_subnet_network_acl_association/import.sh" + "path": "./examples/resources/awscc_ec2_subnet_network_acl_association/import.sh" }, { "resource": "awscc_ec2_subnet_route_table_association", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_subnet_route_table_association/import.sh" + "path": "./examples/resources/awscc_ec2_subnet_route_table_association/import.sh" }, { "resource": "awscc_ec2_transit_gateway", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_transit_gateway/import.sh" + "path": "./examples/resources/awscc_ec2_transit_gateway/import.sh" }, { "resource": "awscc_ec2_transit_gateway_attachment", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_transit_gateway_attachment/import.sh" + "path": "./examples/resources/awscc_ec2_transit_gateway_attachment/import.sh" }, { "resource": "awscc_ec2_transit_gateway_connect", "identifier": "TransitGatewayAttachmentId", - "path": "../../examples/resources/awscc_ec2_transit_gateway_connect/import.sh" + "path": "./examples/resources/awscc_ec2_transit_gateway_connect/import.sh" }, { "resource": "awscc_ec2_transit_gateway_multicast_domain", "identifier": "TransitGatewayMulticastDomainId", - "path": "../../examples/resources/awscc_ec2_transit_gateway_multicast_domain/import.sh" + "path": "./examples/resources/awscc_ec2_transit_gateway_multicast_domain/import.sh" }, { "resource": "awscc_ec2_transit_gateway_multicast_domain_association", "identifier": "TransitGatewayMulticastDomainId,TransitGatewayAttachmentId,SubnetId", - "path": "../../examples/resources/awscc_ec2_transit_gateway_multicast_domain_association/import.sh" + "path": "./examples/resources/awscc_ec2_transit_gateway_multicast_domain_association/import.sh" }, { "resource": "awscc_ec2_transit_gateway_multicast_group_member", "identifier": "TransitGatewayMulticastDomainId,GroupIpAddress,NetworkInterfaceId", - "path": "../../examples/resources/awscc_ec2_transit_gateway_multicast_group_member/import.sh" + "path": "./examples/resources/awscc_ec2_transit_gateway_multicast_group_member/import.sh" }, { "resource": "awscc_ec2_transit_gateway_multicast_group_source", "identifier": "TransitGatewayMulticastDomainId,GroupIpAddress,NetworkInterfaceId", - "path": "../../examples/resources/awscc_ec2_transit_gateway_multicast_group_source/import.sh" + "path": "./examples/resources/awscc_ec2_transit_gateway_multicast_group_source/import.sh" }, { "resource": "awscc_ec2_transit_gateway_peering_attachment", "identifier": "TransitGatewayAttachmentId", - "path": "../../examples/resources/awscc_ec2_transit_gateway_peering_attachment/import.sh" + "path": "./examples/resources/awscc_ec2_transit_gateway_peering_attachment/import.sh" }, { "resource": "awscc_ec2_transit_gateway_route", "identifier": "TransitGatewayRouteTableId,DestinationCidrBlock", - "path": "../../examples/resources/awscc_ec2_transit_gateway_route/import.sh" + "path": "./examples/resources/awscc_ec2_transit_gateway_route/import.sh" }, { "resource": "awscc_ec2_transit_gateway_route_table", "identifier": "TransitGatewayRouteTableId", - "path": "../../examples/resources/awscc_ec2_transit_gateway_route_table/import.sh" + "path": "./examples/resources/awscc_ec2_transit_gateway_route_table/import.sh" }, { "resource": "awscc_ec2_transit_gateway_route_table_association", "identifier": "TransitGatewayRouteTableId,TransitGatewayAttachmentId", - "path": "../../examples/resources/awscc_ec2_transit_gateway_route_table_association/import.sh" + "path": "./examples/resources/awscc_ec2_transit_gateway_route_table_association/import.sh" }, { "resource": "awscc_ec2_transit_gateway_route_table_propagation", "identifier": "TransitGatewayRouteTableId,TransitGatewayAttachmentId", - "path": "../../examples/resources/awscc_ec2_transit_gateway_route_table_propagation/import.sh" + "path": "./examples/resources/awscc_ec2_transit_gateway_route_table_propagation/import.sh" }, { "resource": "awscc_ec2_transit_gateway_vpc_attachment", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_transit_gateway_vpc_attachment/import.sh" + "path": "./examples/resources/awscc_ec2_transit_gateway_vpc_attachment/import.sh" }, { "resource": "awscc_ec2_vpc", "identifier": "VpcId", - "path": "../../examples/resources/awscc_ec2_vpc/import.sh" + "path": "./examples/resources/awscc_ec2_vpc/import.sh" }, { "resource": "awscc_ec2_vpc_cidr_block", "identifier": "Id,VpcId", - "path": "../../examples/resources/awscc_ec2_vpc_cidr_block/import.sh" + "path": "./examples/resources/awscc_ec2_vpc_cidr_block/import.sh" }, { "resource": "awscc_ec2_vpcdhcp_options_association", "identifier": "DhcpOptionsId,VpcId", - "path": "../../examples/resources/awscc_ec2_vpcdhcp_options_association/import.sh" + "path": "./examples/resources/awscc_ec2_vpcdhcp_options_association/import.sh" }, { "resource": "awscc_ec2_vpc_endpoint", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_vpc_endpoint/import.sh" + "path": "./examples/resources/awscc_ec2_vpc_endpoint/import.sh" }, { "resource": "awscc_ec2_vpc_endpoint_connection_notification", "identifier": "VPCEndpointConnectionNotificationId", - "path": "../../examples/resources/awscc_ec2_vpc_endpoint_connection_notification/import.sh" + "path": "./examples/resources/awscc_ec2_vpc_endpoint_connection_notification/import.sh" }, { "resource": "awscc_ec2_vpc_endpoint_service", "identifier": "ServiceId", - "path": "../../examples/resources/awscc_ec2_vpc_endpoint_service/import.sh" + "path": "./examples/resources/awscc_ec2_vpc_endpoint_service/import.sh" }, { "resource": "awscc_ec2_vpc_endpoint_service_permissions", "identifier": "ServiceId", - "path": "../../examples/resources/awscc_ec2_vpc_endpoint_service_permissions/import.sh" + "path": "./examples/resources/awscc_ec2_vpc_endpoint_service_permissions/import.sh" }, { "resource": "awscc_ec2_vpc_gateway_attachment", "identifier": "AttachmentType,VpcId", - "path": "../../examples/resources/awscc_ec2_vpc_gateway_attachment/import.sh" + "path": "./examples/resources/awscc_ec2_vpc_gateway_attachment/import.sh" }, { "resource": "awscc_ec2_vpc_peering_connection", "identifier": "Id", - "path": "../../examples/resources/awscc_ec2_vpc_peering_connection/import.sh" + "path": "./examples/resources/awscc_ec2_vpc_peering_connection/import.sh" }, { "resource": "awscc_ec2_vpn_connection", "identifier": "VpnConnectionId", - "path": "../../examples/resources/awscc_ec2_vpn_connection/import.sh" + "path": "./examples/resources/awscc_ec2_vpn_connection/import.sh" }, { "resource": "awscc_ec2_vpn_connection_route", "identifier": "DestinationCidrBlock,VpnConnectionId", - "path": "../../examples/resources/awscc_ec2_vpn_connection_route/import.sh" + "path": "./examples/resources/awscc_ec2_vpn_connection_route/import.sh" }, { "resource": "awscc_ec2_vpn_gateway", "identifier": "VPNGatewayId", - "path": "../../examples/resources/awscc_ec2_vpn_gateway/import.sh" + "path": "./examples/resources/awscc_ec2_vpn_gateway/import.sh" }, { "resource": "awscc_ec2_verified_access_endpoint", "identifier": "VerifiedAccessEndpointId", - "path": "../../examples/resources/awscc_ec2_verified_access_endpoint/import.sh" + "path": "./examples/resources/awscc_ec2_verified_access_endpoint/import.sh" }, { "resource": "awscc_ec2_verified_access_group", "identifier": "VerifiedAccessGroupId", - "path": "../../examples/resources/awscc_ec2_verified_access_group/import.sh" + "path": "./examples/resources/awscc_ec2_verified_access_group/import.sh" }, { "resource": "awscc_ec2_verified_access_instance", "identifier": "VerifiedAccessInstanceId", - "path": "../../examples/resources/awscc_ec2_verified_access_instance/import.sh" + "path": "./examples/resources/awscc_ec2_verified_access_instance/import.sh" }, { "resource": "awscc_ec2_verified_access_trust_provider", "identifier": "VerifiedAccessTrustProviderId", - "path": "../../examples/resources/awscc_ec2_verified_access_trust_provider/import.sh" + "path": "./examples/resources/awscc_ec2_verified_access_trust_provider/import.sh" }, { "resource": "awscc_ec2_volume", "identifier": "VolumeId", - "path": "../../examples/resources/awscc_ec2_volume/import.sh" + "path": "./examples/resources/awscc_ec2_volume/import.sh" }, { "resource": "awscc_ec2_volume_attachment", "identifier": "VolumeId,InstanceId", - "path": "../../examples/resources/awscc_ec2_volume_attachment/import.sh" + "path": "./examples/resources/awscc_ec2_volume_attachment/import.sh" }, { "resource": "awscc_ecr_public_repository", "identifier": "RepositoryName", - "path": "../../examples/resources/awscc_ecr_public_repository/import.sh" + "path": "./examples/resources/awscc_ecr_public_repository/import.sh" }, { "resource": "awscc_ecr_pull_through_cache_rule", "identifier": "EcrRepositoryPrefix", - "path": "../../examples/resources/awscc_ecr_pull_through_cache_rule/import.sh" + "path": "./examples/resources/awscc_ecr_pull_through_cache_rule/import.sh" }, { "resource": "awscc_ecr_registry_policy", "identifier": "RegistryId", - "path": "../../examples/resources/awscc_ecr_registry_policy/import.sh" + "path": "./examples/resources/awscc_ecr_registry_policy/import.sh" }, { "resource": "awscc_ecr_replication_configuration", "identifier": "RegistryId", - "path": "../../examples/resources/awscc_ecr_replication_configuration/import.sh" + "path": "./examples/resources/awscc_ecr_replication_configuration/import.sh" }, { "resource": "awscc_ecr_repository", "identifier": "RepositoryName", - "path": "../../examples/resources/awscc_ecr_repository/import.sh" + "path": "./examples/resources/awscc_ecr_repository/import.sh" }, { "resource": "awscc_ecr_repository_creation_template", "identifier": "Prefix", - "path": "../../examples/resources/awscc_ecr_repository_creation_template/import.sh" + "path": "./examples/resources/awscc_ecr_repository_creation_template/import.sh" }, { "resource": "awscc_ecs_capacity_provider", "identifier": "Name", - "path": "../../examples/resources/awscc_ecs_capacity_provider/import.sh" + "path": "./examples/resources/awscc_ecs_capacity_provider/import.sh" }, { "resource": "awscc_ecs_cluster", "identifier": "ClusterName", - "path": "../../examples/resources/awscc_ecs_cluster/import.sh" + "path": "./examples/resources/awscc_ecs_cluster/import.sh" }, { "resource": "awscc_ecs_cluster_capacity_provider_associations", "identifier": "Cluster", - "path": "../../examples/resources/awscc_ecs_cluster_capacity_provider_associations/import.sh" + "path": "./examples/resources/awscc_ecs_cluster_capacity_provider_associations/import.sh" }, { "resource": "awscc_ecs_primary_task_set", "identifier": "Cluster,Service", - "path": "../../examples/resources/awscc_ecs_primary_task_set/import.sh" + "path": "./examples/resources/awscc_ecs_primary_task_set/import.sh" }, { "resource": "awscc_ecs_service", "identifier": "ServiceArn,Cluster", - "path": "../../examples/resources/awscc_ecs_service/import.sh" + "path": "./examples/resources/awscc_ecs_service/import.sh" }, { "resource": "awscc_ecs_task_definition", "identifier": "TaskDefinitionArn", - "path": "../../examples/resources/awscc_ecs_task_definition/import.sh" + "path": "./examples/resources/awscc_ecs_task_definition/import.sh" }, { "resource": "awscc_ecs_task_set", "identifier": "Cluster,Service,Id", - "path": "../../examples/resources/awscc_ecs_task_set/import.sh" + "path": "./examples/resources/awscc_ecs_task_set/import.sh" }, { "resource": "awscc_efs_access_point", "identifier": "AccessPointId", - "path": "../../examples/resources/awscc_efs_access_point/import.sh" + "path": "./examples/resources/awscc_efs_access_point/import.sh" }, { "resource": "awscc_efs_file_system", "identifier": "FileSystemId", - "path": "../../examples/resources/awscc_efs_file_system/import.sh" + "path": "./examples/resources/awscc_efs_file_system/import.sh" }, { "resource": "awscc_efs_mount_target", "identifier": "Id", - "path": "../../examples/resources/awscc_efs_mount_target/import.sh" + "path": "./examples/resources/awscc_efs_mount_target/import.sh" }, { "resource": "awscc_eks_access_entry", "identifier": "PrincipalArn,ClusterName", - "path": "../../examples/resources/awscc_eks_access_entry/import.sh" + "path": "./examples/resources/awscc_eks_access_entry/import.sh" }, { "resource": "awscc_eks_addon", "identifier": "ClusterName,AddonName", - "path": "../../examples/resources/awscc_eks_addon/import.sh" + "path": "./examples/resources/awscc_eks_addon/import.sh" }, { "resource": "awscc_eks_cluster", "identifier": "Name", - "path": "../../examples/resources/awscc_eks_cluster/import.sh" + "path": "./examples/resources/awscc_eks_cluster/import.sh" }, { "resource": "awscc_eks_fargate_profile", "identifier": "ClusterName,FargateProfileName", - "path": "../../examples/resources/awscc_eks_fargate_profile/import.sh" + "path": "./examples/resources/awscc_eks_fargate_profile/import.sh" }, { "resource": "awscc_eks_identity_provider_config", "identifier": "IdentityProviderConfigName,ClusterName,Type", - "path": "../../examples/resources/awscc_eks_identity_provider_config/import.sh" + "path": "./examples/resources/awscc_eks_identity_provider_config/import.sh" }, { "resource": "awscc_eks_nodegroup", "identifier": "Id", - "path": "../../examples/resources/awscc_eks_nodegroup/import.sh" + "path": "./examples/resources/awscc_eks_nodegroup/import.sh" }, { "resource": "awscc_eks_pod_identity_association", "identifier": "AssociationArn", - "path": "../../examples/resources/awscc_eks_pod_identity_association/import.sh" + "path": "./examples/resources/awscc_eks_pod_identity_association/import.sh" }, { "resource": "awscc_emr_security_configuration", "identifier": "Name", - "path": "../../examples/resources/awscc_emr_security_configuration/import.sh" + "path": "./examples/resources/awscc_emr_security_configuration/import.sh" }, { "resource": "awscc_emr_studio", "identifier": "StudioId", - "path": "../../examples/resources/awscc_emr_studio/import.sh" + "path": "./examples/resources/awscc_emr_studio/import.sh" }, { "resource": "awscc_emr_studio_session_mapping", "identifier": "StudioId,IdentityType,IdentityName", - "path": "../../examples/resources/awscc_emr_studio_session_mapping/import.sh" + "path": "./examples/resources/awscc_emr_studio_session_mapping/import.sh" }, { "resource": "awscc_emr_wal_workspace", "identifier": "WALWorkspaceName", - "path": "../../examples/resources/awscc_emr_wal_workspace/import.sh" + "path": "./examples/resources/awscc_emr_wal_workspace/import.sh" }, { "resource": "awscc_emrcontainers_virtual_cluster", "identifier": "Id", - "path": "../../examples/resources/awscc_emrcontainers_virtual_cluster/import.sh" + "path": "./examples/resources/awscc_emrcontainers_virtual_cluster/import.sh" }, { "resource": "awscc_emrserverless_application", "identifier": "ApplicationId", - "path": "../../examples/resources/awscc_emrserverless_application/import.sh" + "path": "./examples/resources/awscc_emrserverless_application/import.sh" }, { "resource": "awscc_elasticache_global_replication_group", "identifier": "GlobalReplicationGroupId", - "path": "../../examples/resources/awscc_elasticache_global_replication_group/import.sh" + "path": "./examples/resources/awscc_elasticache_global_replication_group/import.sh" }, { "resource": "awscc_elasticache_parameter_group", "identifier": "CacheParameterGroupName", - "path": "../../examples/resources/awscc_elasticache_parameter_group/import.sh" + "path": "./examples/resources/awscc_elasticache_parameter_group/import.sh" }, { "resource": "awscc_elasticache_serverless_cache", "identifier": "ServerlessCacheName", - "path": "../../examples/resources/awscc_elasticache_serverless_cache/import.sh" + "path": "./examples/resources/awscc_elasticache_serverless_cache/import.sh" }, { "resource": "awscc_elasticache_subnet_group", "identifier": "CacheSubnetGroupName", - "path": "../../examples/resources/awscc_elasticache_subnet_group/import.sh" + "path": "./examples/resources/awscc_elasticache_subnet_group/import.sh" }, { "resource": "awscc_elasticache_user", "identifier": "UserId", - "path": "../../examples/resources/awscc_elasticache_user/import.sh" + "path": "./examples/resources/awscc_elasticache_user/import.sh" }, { "resource": "awscc_elasticache_user_group", "identifier": "UserGroupId", - "path": "../../examples/resources/awscc_elasticache_user_group/import.sh" + "path": "./examples/resources/awscc_elasticache_user_group/import.sh" }, { "resource": "awscc_elasticbeanstalk_application", "identifier": "ApplicationName", - "path": "../../examples/resources/awscc_elasticbeanstalk_application/import.sh" + "path": "./examples/resources/awscc_elasticbeanstalk_application/import.sh" }, { "resource": "awscc_elasticbeanstalk_application_version", "identifier": "ApplicationName,Id", - "path": "../../examples/resources/awscc_elasticbeanstalk_application_version/import.sh" + "path": "./examples/resources/awscc_elasticbeanstalk_application_version/import.sh" }, { "resource": "awscc_elasticbeanstalk_configuration_template", "identifier": "ApplicationName,TemplateName", - "path": "../../examples/resources/awscc_elasticbeanstalk_configuration_template/import.sh" + "path": "./examples/resources/awscc_elasticbeanstalk_configuration_template/import.sh" }, { "resource": "awscc_elasticbeanstalk_environment", "identifier": "EnvironmentName", - "path": "../../examples/resources/awscc_elasticbeanstalk_environment/import.sh" + "path": "./examples/resources/awscc_elasticbeanstalk_environment/import.sh" }, { "resource": "awscc_elasticloadbalancingv2_load_balancer", "identifier": "LoadBalancerArn", - "path": "../../examples/resources/awscc_elasticloadbalancingv2_load_balancer/import.sh" + "path": "./examples/resources/awscc_elasticloadbalancingv2_load_balancer/import.sh" }, { "resource": "awscc_elasticloadbalancingv2_target_group", "identifier": "TargetGroupArn", - "path": "../../examples/resources/awscc_elasticloadbalancingv2_target_group/import.sh" + "path": "./examples/resources/awscc_elasticloadbalancingv2_target_group/import.sh" }, { "resource": "awscc_elasticloadbalancingv2_trust_store", "identifier": "TrustStoreArn", - "path": "../../examples/resources/awscc_elasticloadbalancingv2_trust_store/import.sh" + "path": "./examples/resources/awscc_elasticloadbalancingv2_trust_store/import.sh" }, { "resource": "awscc_elasticloadbalancingv2_trust_store_revocation", "identifier": "RevocationId,TrustStoreArn", - "path": "../../examples/resources/awscc_elasticloadbalancingv2_trust_store_revocation/import.sh" + "path": "./examples/resources/awscc_elasticloadbalancingv2_trust_store_revocation/import.sh" }, { "resource": "awscc_entityresolution_id_mapping_workflow", "identifier": "WorkflowName", - "path": "../../examples/resources/awscc_entityresolution_id_mapping_workflow/import.sh" + "path": "./examples/resources/awscc_entityresolution_id_mapping_workflow/import.sh" }, { "resource": "awscc_entityresolution_id_namespace", "identifier": "IdNamespaceName", - "path": "../../examples/resources/awscc_entityresolution_id_namespace/import.sh" + "path": "./examples/resources/awscc_entityresolution_id_namespace/import.sh" }, { "resource": "awscc_entityresolution_matching_workflow", "identifier": "WorkflowName", - "path": "../../examples/resources/awscc_entityresolution_matching_workflow/import.sh" + "path": "./examples/resources/awscc_entityresolution_matching_workflow/import.sh" }, { "resource": "awscc_entityresolution_policy_statement", "identifier": "Arn,StatementId", - "path": "../../examples/resources/awscc_entityresolution_policy_statement/import.sh" + "path": "./examples/resources/awscc_entityresolution_policy_statement/import.sh" }, { "resource": "awscc_entityresolution_schema_mapping", "identifier": "SchemaName", - "path": "../../examples/resources/awscc_entityresolution_schema_mapping/import.sh" + "path": "./examples/resources/awscc_entityresolution_schema_mapping/import.sh" }, { "resource": "awscc_eventschemas_discoverer", "identifier": "DiscovererArn", - "path": "../../examples/resources/awscc_eventschemas_discoverer/import.sh" + "path": "./examples/resources/awscc_eventschemas_discoverer/import.sh" }, { "resource": "awscc_eventschemas_registry", "identifier": "RegistryArn", - "path": "../../examples/resources/awscc_eventschemas_registry/import.sh" + "path": "./examples/resources/awscc_eventschemas_registry/import.sh" }, { "resource": "awscc_eventschemas_registry_policy", "identifier": "Id", - "path": "../../examples/resources/awscc_eventschemas_registry_policy/import.sh" + "path": "./examples/resources/awscc_eventschemas_registry_policy/import.sh" }, { "resource": "awscc_eventschemas_schema", "identifier": "SchemaArn", - "path": "../../examples/resources/awscc_eventschemas_schema/import.sh" + "path": "./examples/resources/awscc_eventschemas_schema/import.sh" }, { "resource": "awscc_events_api_destination", "identifier": "Name", - "path": "../../examples/resources/awscc_events_api_destination/import.sh" + "path": "./examples/resources/awscc_events_api_destination/import.sh" }, { "resource": "awscc_events_archive", "identifier": "ArchiveName", - "path": "../../examples/resources/awscc_events_archive/import.sh" + "path": "./examples/resources/awscc_events_archive/import.sh" }, { "resource": "awscc_events_endpoint", "identifier": "Name", - "path": "../../examples/resources/awscc_events_endpoint/import.sh" + "path": "./examples/resources/awscc_events_endpoint/import.sh" }, { "resource": "awscc_events_event_bus", "identifier": "Name", - "path": "../../examples/resources/awscc_events_event_bus/import.sh" + "path": "./examples/resources/awscc_events_event_bus/import.sh" }, { "resource": "awscc_events_rule", "identifier": "Arn", - "path": "../../examples/resources/awscc_events_rule/import.sh" + "path": "./examples/resources/awscc_events_rule/import.sh" }, { "resource": "awscc_evidently_experiment", "identifier": "Arn", - "path": "../../examples/resources/awscc_evidently_experiment/import.sh" + "path": "./examples/resources/awscc_evidently_experiment/import.sh" }, { "resource": "awscc_evidently_feature", "identifier": "Arn", - "path": "../../examples/resources/awscc_evidently_feature/import.sh" + "path": "./examples/resources/awscc_evidently_feature/import.sh" }, { "resource": "awscc_evidently_launch", "identifier": "Arn", - "path": "../../examples/resources/awscc_evidently_launch/import.sh" + "path": "./examples/resources/awscc_evidently_launch/import.sh" }, { "resource": "awscc_evidently_project", "identifier": "Arn", - "path": "../../examples/resources/awscc_evidently_project/import.sh" + "path": "./examples/resources/awscc_evidently_project/import.sh" }, { "resource": "awscc_evidently_segment", "identifier": "Arn", - "path": "../../examples/resources/awscc_evidently_segment/import.sh" + "path": "./examples/resources/awscc_evidently_segment/import.sh" }, { "resource": "awscc_fis_experiment_template", "identifier": "Id", - "path": "../../examples/resources/awscc_fis_experiment_template/import.sh" + "path": "./examples/resources/awscc_fis_experiment_template/import.sh" }, { "resource": "awscc_fis_target_account_configuration", "identifier": "ExperimentTemplateId,AccountId", - "path": "../../examples/resources/awscc_fis_target_account_configuration/import.sh" + "path": "./examples/resources/awscc_fis_target_account_configuration/import.sh" }, { "resource": "awscc_fms_notification_channel", "identifier": "SnsTopicArn", - "path": "../../examples/resources/awscc_fms_notification_channel/import.sh" + "path": "./examples/resources/awscc_fms_notification_channel/import.sh" }, { "resource": "awscc_fms_policy", "identifier": "Id", - "path": "../../examples/resources/awscc_fms_policy/import.sh" + "path": "./examples/resources/awscc_fms_policy/import.sh" }, { "resource": "awscc_fms_resource_set", "identifier": "Id", - "path": "../../examples/resources/awscc_fms_resource_set/import.sh" + "path": "./examples/resources/awscc_fms_resource_set/import.sh" }, { "resource": "awscc_fsx_data_repository_association", "identifier": "AssociationId", - "path": "../../examples/resources/awscc_fsx_data_repository_association/import.sh" + "path": "./examples/resources/awscc_fsx_data_repository_association/import.sh" }, { "resource": "awscc_finspace_environment", "identifier": "EnvironmentId", - "path": "../../examples/resources/awscc_finspace_environment/import.sh" + "path": "./examples/resources/awscc_finspace_environment/import.sh" }, { "resource": "awscc_forecast_dataset", "identifier": "Arn", - "path": "../../examples/resources/awscc_forecast_dataset/import.sh" + "path": "./examples/resources/awscc_forecast_dataset/import.sh" }, { "resource": "awscc_forecast_dataset_group", "identifier": "DatasetGroupArn", - "path": "../../examples/resources/awscc_forecast_dataset_group/import.sh" + "path": "./examples/resources/awscc_forecast_dataset_group/import.sh" }, { "resource": "awscc_frauddetector_detector", "identifier": "Arn", - "path": "../../examples/resources/awscc_frauddetector_detector/import.sh" + "path": "./examples/resources/awscc_frauddetector_detector/import.sh" }, { "resource": "awscc_frauddetector_entity_type", "identifier": "Arn", - "path": "../../examples/resources/awscc_frauddetector_entity_type/import.sh" + "path": "./examples/resources/awscc_frauddetector_entity_type/import.sh" }, { "resource": "awscc_frauddetector_event_type", "identifier": "Arn", - "path": "../../examples/resources/awscc_frauddetector_event_type/import.sh" + "path": "./examples/resources/awscc_frauddetector_event_type/import.sh" }, { "resource": "awscc_frauddetector_label", "identifier": "Arn", - "path": "../../examples/resources/awscc_frauddetector_label/import.sh" + "path": "./examples/resources/awscc_frauddetector_label/import.sh" }, { "resource": "awscc_frauddetector_list", "identifier": "Arn", - "path": "../../examples/resources/awscc_frauddetector_list/import.sh" + "path": "./examples/resources/awscc_frauddetector_list/import.sh" }, { "resource": "awscc_frauddetector_outcome", "identifier": "Arn", - "path": "../../examples/resources/awscc_frauddetector_outcome/import.sh" + "path": "./examples/resources/awscc_frauddetector_outcome/import.sh" }, { "resource": "awscc_frauddetector_variable", "identifier": "Arn", - "path": "../../examples/resources/awscc_frauddetector_variable/import.sh" + "path": "./examples/resources/awscc_frauddetector_variable/import.sh" }, { "resource": "awscc_gamelift_alias", "identifier": "AliasId", - "path": "../../examples/resources/awscc_gamelift_alias/import.sh" + "path": "./examples/resources/awscc_gamelift_alias/import.sh" }, { "resource": "awscc_gamelift_build", "identifier": "BuildId", - "path": "../../examples/resources/awscc_gamelift_build/import.sh" + "path": "./examples/resources/awscc_gamelift_build/import.sh" }, { "resource": "awscc_gamelift_container_group_definition", "identifier": "Name", - "path": "../../examples/resources/awscc_gamelift_container_group_definition/import.sh" + "path": "./examples/resources/awscc_gamelift_container_group_definition/import.sh" }, { "resource": "awscc_gamelift_fleet", "identifier": "FleetId", - "path": "../../examples/resources/awscc_gamelift_fleet/import.sh" + "path": "./examples/resources/awscc_gamelift_fleet/import.sh" }, { "resource": "awscc_gamelift_game_server_group", "identifier": "GameServerGroupArn", - "path": "../../examples/resources/awscc_gamelift_game_server_group/import.sh" + "path": "./examples/resources/awscc_gamelift_game_server_group/import.sh" }, { "resource": "awscc_gamelift_game_session_queue", "identifier": "Name", - "path": "../../examples/resources/awscc_gamelift_game_session_queue/import.sh" + "path": "./examples/resources/awscc_gamelift_game_session_queue/import.sh" }, { "resource": "awscc_gamelift_location", "identifier": "LocationName", - "path": "../../examples/resources/awscc_gamelift_location/import.sh" + "path": "./examples/resources/awscc_gamelift_location/import.sh" }, { "resource": "awscc_gamelift_matchmaking_configuration", "identifier": "Name", - "path": "../../examples/resources/awscc_gamelift_matchmaking_configuration/import.sh" + "path": "./examples/resources/awscc_gamelift_matchmaking_configuration/import.sh" }, { "resource": "awscc_gamelift_matchmaking_rule_set", "identifier": "Name", - "path": "../../examples/resources/awscc_gamelift_matchmaking_rule_set/import.sh" + "path": "./examples/resources/awscc_gamelift_matchmaking_rule_set/import.sh" }, { "resource": "awscc_gamelift_script", "identifier": "Id", - "path": "../../examples/resources/awscc_gamelift_script/import.sh" + "path": "./examples/resources/awscc_gamelift_script/import.sh" }, { "resource": "awscc_globalaccelerator_accelerator", "identifier": "AcceleratorArn", - "path": "../../examples/resources/awscc_globalaccelerator_accelerator/import.sh" + "path": "./examples/resources/awscc_globalaccelerator_accelerator/import.sh" }, { "resource": "awscc_globalaccelerator_cross_account_attachment", "identifier": "AttachmentArn", - "path": "../../examples/resources/awscc_globalaccelerator_cross_account_attachment/import.sh" + "path": "./examples/resources/awscc_globalaccelerator_cross_account_attachment/import.sh" }, { "resource": "awscc_globalaccelerator_endpoint_group", "identifier": "EndpointGroupArn", - "path": "../../examples/resources/awscc_globalaccelerator_endpoint_group/import.sh" + "path": "./examples/resources/awscc_globalaccelerator_endpoint_group/import.sh" }, { "resource": "awscc_globalaccelerator_listener", "identifier": "ListenerArn", - "path": "../../examples/resources/awscc_globalaccelerator_listener/import.sh" + "path": "./examples/resources/awscc_globalaccelerator_listener/import.sh" }, { "resource": "awscc_glue_database", "identifier": "DatabaseName", - "path": "../../examples/resources/awscc_glue_database/import.sh" + "path": "./examples/resources/awscc_glue_database/import.sh" }, { "resource": "awscc_glue_registry", "identifier": "Arn", - "path": "../../examples/resources/awscc_glue_registry/import.sh" + "path": "./examples/resources/awscc_glue_registry/import.sh" }, { "resource": "awscc_glue_schema", "identifier": "Arn", - "path": "../../examples/resources/awscc_glue_schema/import.sh" + "path": "./examples/resources/awscc_glue_schema/import.sh" }, { "resource": "awscc_glue_schema_version", "identifier": "VersionId", - "path": "../../examples/resources/awscc_glue_schema_version/import.sh" + "path": "./examples/resources/awscc_glue_schema_version/import.sh" }, { "resource": "awscc_glue_schema_version_metadata", "identifier": "SchemaVersionId,Key,Value", - "path": "../../examples/resources/awscc_glue_schema_version_metadata/import.sh" + "path": "./examples/resources/awscc_glue_schema_version_metadata/import.sh" }, { "resource": "awscc_glue_trigger", "identifier": "Name", - "path": "../../examples/resources/awscc_glue_trigger/import.sh" + "path": "./examples/resources/awscc_glue_trigger/import.sh" }, { "resource": "awscc_grafana_workspace", "identifier": "Id", - "path": "../../examples/resources/awscc_grafana_workspace/import.sh" + "path": "./examples/resources/awscc_grafana_workspace/import.sh" }, { "resource": "awscc_greengrassv2_component_version", "identifier": "Arn", - "path": "../../examples/resources/awscc_greengrassv2_component_version/import.sh" + "path": "./examples/resources/awscc_greengrassv2_component_version/import.sh" }, { "resource": "awscc_greengrassv2_deployment", "identifier": "DeploymentId", - "path": "../../examples/resources/awscc_greengrassv2_deployment/import.sh" + "path": "./examples/resources/awscc_greengrassv2_deployment/import.sh" }, { "resource": "awscc_groundstation_config", "identifier": "Arn", - "path": "../../examples/resources/awscc_groundstation_config/import.sh" + "path": "./examples/resources/awscc_groundstation_config/import.sh" }, { "resource": "awscc_groundstation_dataflow_endpoint_group", "identifier": "Id", - "path": "../../examples/resources/awscc_groundstation_dataflow_endpoint_group/import.sh" + "path": "./examples/resources/awscc_groundstation_dataflow_endpoint_group/import.sh" }, { "resource": "awscc_groundstation_mission_profile", "identifier": "Id,Arn", - "path": "../../examples/resources/awscc_groundstation_mission_profile/import.sh" + "path": "./examples/resources/awscc_groundstation_mission_profile/import.sh" }, { "resource": "awscc_guardduty_detector", "identifier": "Id", - "path": "../../examples/resources/awscc_guardduty_detector/import.sh" + "path": "./examples/resources/awscc_guardduty_detector/import.sh" }, { "resource": "awscc_guardduty_filter", "identifier": "DetectorId,Name", - "path": "../../examples/resources/awscc_guardduty_filter/import.sh" + "path": "./examples/resources/awscc_guardduty_filter/import.sh" }, { "resource": "awscc_guardduty_ip_set", "identifier": "Id,DetectorId", - "path": "../../examples/resources/awscc_guardduty_ip_set/import.sh" + "path": "./examples/resources/awscc_guardduty_ip_set/import.sh" }, { "resource": "awscc_guardduty_malware_protection_plan", "identifier": "MalwareProtectionPlanId", - "path": "../../examples/resources/awscc_guardduty_malware_protection_plan/import.sh" + "path": "./examples/resources/awscc_guardduty_malware_protection_plan/import.sh" }, { "resource": "awscc_guardduty_master", "identifier": "DetectorId,MasterId", - "path": "../../examples/resources/awscc_guardduty_master/import.sh" + "path": "./examples/resources/awscc_guardduty_master/import.sh" }, { "resource": "awscc_guardduty_member", "identifier": "DetectorId,MemberId", - "path": "../../examples/resources/awscc_guardduty_member/import.sh" + "path": "./examples/resources/awscc_guardduty_member/import.sh" }, { "resource": "awscc_guardduty_threat_intel_set", "identifier": "Id,DetectorId", - "path": "../../examples/resources/awscc_guardduty_threat_intel_set/import.sh" + "path": "./examples/resources/awscc_guardduty_threat_intel_set/import.sh" }, { "resource": "awscc_healthimaging_datastore", "identifier": "DatastoreId", - "path": "../../examples/resources/awscc_healthimaging_datastore/import.sh" + "path": "./examples/resources/awscc_healthimaging_datastore/import.sh" }, { "resource": "awscc_healthlake_fhir_datastore", "identifier": "DatastoreId", - "path": "../../examples/resources/awscc_healthlake_fhir_datastore/import.sh" + "path": "./examples/resources/awscc_healthlake_fhir_datastore/import.sh" }, { "resource": "awscc_iam_group", "identifier": "GroupName", - "path": "../../examples/resources/awscc_iam_group/import.sh" + "path": "./examples/resources/awscc_iam_group/import.sh" }, { "resource": "awscc_iam_group_policy", "identifier": "PolicyName,GroupName", - "path": "../../examples/resources/awscc_iam_group_policy/import.sh" + "path": "./examples/resources/awscc_iam_group_policy/import.sh" }, { "resource": "awscc_iam_instance_profile", "identifier": "InstanceProfileName", - "path": "../../examples/resources/awscc_iam_instance_profile/import.sh" + "path": "./examples/resources/awscc_iam_instance_profile/import.sh" }, { "resource": "awscc_iam_managed_policy", "identifier": "PolicyArn", - "path": "../../examples/resources/awscc_iam_managed_policy/import.sh" + "path": "./examples/resources/awscc_iam_managed_policy/import.sh" }, { "resource": "awscc_iam_oidc_provider", "identifier": "Arn", - "path": "../../examples/resources/awscc_iam_oidc_provider/import.sh" + "path": "./examples/resources/awscc_iam_oidc_provider/import.sh" }, { "resource": "awscc_iam_role", "identifier": "RoleName", - "path": "../../examples/resources/awscc_iam_role/import.sh" + "path": "./examples/resources/awscc_iam_role/import.sh" }, { "resource": "awscc_iam_role_policy", "identifier": "PolicyName,RoleName", - "path": "../../examples/resources/awscc_iam_role_policy/import.sh" + "path": "./examples/resources/awscc_iam_role_policy/import.sh" }, { "resource": "awscc_iam_saml_provider", "identifier": "Arn", - "path": "../../examples/resources/awscc_iam_saml_provider/import.sh" + "path": "./examples/resources/awscc_iam_saml_provider/import.sh" }, { "resource": "awscc_iam_server_certificate", "identifier": "ServerCertificateName", - "path": "../../examples/resources/awscc_iam_server_certificate/import.sh" + "path": "./examples/resources/awscc_iam_server_certificate/import.sh" }, { "resource": "awscc_iam_service_linked_role", "identifier": "RoleName", - "path": "../../examples/resources/awscc_iam_service_linked_role/import.sh" + "path": "./examples/resources/awscc_iam_service_linked_role/import.sh" }, { "resource": "awscc_iam_user", "identifier": "UserName", - "path": "../../examples/resources/awscc_iam_user/import.sh" + "path": "./examples/resources/awscc_iam_user/import.sh" }, { "resource": "awscc_iam_user_policy", "identifier": "PolicyName,UserName", - "path": "../../examples/resources/awscc_iam_user_policy/import.sh" + "path": "./examples/resources/awscc_iam_user_policy/import.sh" }, { "resource": "awscc_iam_virtual_mfa_device", "identifier": "SerialNumber", - "path": "../../examples/resources/awscc_iam_virtual_mfa_device/import.sh" + "path": "./examples/resources/awscc_iam_virtual_mfa_device/import.sh" }, { "resource": "awscc_ivs_channel", "identifier": "Arn", - "path": "../../examples/resources/awscc_ivs_channel/import.sh" + "path": "./examples/resources/awscc_ivs_channel/import.sh" }, { "resource": "awscc_ivs_encoder_configuration", "identifier": "Arn", - "path": "../../examples/resources/awscc_ivs_encoder_configuration/import.sh" + "path": "./examples/resources/awscc_ivs_encoder_configuration/import.sh" }, { "resource": "awscc_ivs_playback_key_pair", "identifier": "Arn", - "path": "../../examples/resources/awscc_ivs_playback_key_pair/import.sh" + "path": "./examples/resources/awscc_ivs_playback_key_pair/import.sh" }, { "resource": "awscc_ivs_playback_restriction_policy", "identifier": "Arn", - "path": "../../examples/resources/awscc_ivs_playback_restriction_policy/import.sh" + "path": "./examples/resources/awscc_ivs_playback_restriction_policy/import.sh" }, { "resource": "awscc_ivs_public_key", "identifier": "Arn", - "path": "../../examples/resources/awscc_ivs_public_key/import.sh" + "path": "./examples/resources/awscc_ivs_public_key/import.sh" }, { "resource": "awscc_ivs_recording_configuration", "identifier": "Arn", - "path": "../../examples/resources/awscc_ivs_recording_configuration/import.sh" + "path": "./examples/resources/awscc_ivs_recording_configuration/import.sh" }, { "resource": "awscc_ivs_stage", "identifier": "Arn", - "path": "../../examples/resources/awscc_ivs_stage/import.sh" + "path": "./examples/resources/awscc_ivs_stage/import.sh" }, { "resource": "awscc_ivs_storage_configuration", "identifier": "Arn", - "path": "../../examples/resources/awscc_ivs_storage_configuration/import.sh" + "path": "./examples/resources/awscc_ivs_storage_configuration/import.sh" }, { "resource": "awscc_ivs_stream_key", "identifier": "Arn", - "path": "../../examples/resources/awscc_ivs_stream_key/import.sh" + "path": "./examples/resources/awscc_ivs_stream_key/import.sh" }, { "resource": "awscc_ivschat_logging_configuration", "identifier": "Arn", - "path": "../../examples/resources/awscc_ivschat_logging_configuration/import.sh" + "path": "./examples/resources/awscc_ivschat_logging_configuration/import.sh" }, { "resource": "awscc_ivschat_room", "identifier": "Arn", - "path": "../../examples/resources/awscc_ivschat_room/import.sh" + "path": "./examples/resources/awscc_ivschat_room/import.sh" }, { "resource": "awscc_identitystore_group", "identifier": "GroupId,IdentityStoreId", - "path": "../../examples/resources/awscc_identitystore_group/import.sh" + "path": "./examples/resources/awscc_identitystore_group/import.sh" }, { "resource": "awscc_identitystore_group_membership", "identifier": "MembershipId,IdentityStoreId", - "path": "../../examples/resources/awscc_identitystore_group_membership/import.sh" + "path": "./examples/resources/awscc_identitystore_group_membership/import.sh" }, { "resource": "awscc_imagebuilder_component", "identifier": "Arn", - "path": "../../examples/resources/awscc_imagebuilder_component/import.sh" + "path": "./examples/resources/awscc_imagebuilder_component/import.sh" }, { "resource": "awscc_imagebuilder_container_recipe", "identifier": "Arn", - "path": "../../examples/resources/awscc_imagebuilder_container_recipe/import.sh" + "path": "./examples/resources/awscc_imagebuilder_container_recipe/import.sh" }, { "resource": "awscc_imagebuilder_distribution_configuration", "identifier": "Arn", - "path": "../../examples/resources/awscc_imagebuilder_distribution_configuration/import.sh" + "path": "./examples/resources/awscc_imagebuilder_distribution_configuration/import.sh" }, { "resource": "awscc_imagebuilder_image", "identifier": "Arn", - "path": "../../examples/resources/awscc_imagebuilder_image/import.sh" + "path": "./examples/resources/awscc_imagebuilder_image/import.sh" }, { "resource": "awscc_imagebuilder_image_pipeline", "identifier": "Arn", - "path": "../../examples/resources/awscc_imagebuilder_image_pipeline/import.sh" + "path": "./examples/resources/awscc_imagebuilder_image_pipeline/import.sh" }, { "resource": "awscc_imagebuilder_image_recipe", "identifier": "Arn", - "path": "../../examples/resources/awscc_imagebuilder_image_recipe/import.sh" + "path": "./examples/resources/awscc_imagebuilder_image_recipe/import.sh" }, { "resource": "awscc_imagebuilder_infrastructure_configuration", "identifier": "Arn", - "path": "../../examples/resources/awscc_imagebuilder_infrastructure_configuration/import.sh" + "path": "./examples/resources/awscc_imagebuilder_infrastructure_configuration/import.sh" }, { "resource": "awscc_imagebuilder_lifecycle_policy", "identifier": "Arn", - "path": "../../examples/resources/awscc_imagebuilder_lifecycle_policy/import.sh" + "path": "./examples/resources/awscc_imagebuilder_lifecycle_policy/import.sh" }, { "resource": "awscc_imagebuilder_workflow", "identifier": "Arn", - "path": "../../examples/resources/awscc_imagebuilder_workflow/import.sh" + "path": "./examples/resources/awscc_imagebuilder_workflow/import.sh" }, { "resource": "awscc_inspector_assessment_target", "identifier": "Arn", - "path": "../../examples/resources/awscc_inspector_assessment_target/import.sh" + "path": "./examples/resources/awscc_inspector_assessment_target/import.sh" }, { "resource": "awscc_inspector_assessment_template", "identifier": "Arn", - "path": "../../examples/resources/awscc_inspector_assessment_template/import.sh" + "path": "./examples/resources/awscc_inspector_assessment_template/import.sh" }, { "resource": "awscc_inspector_resource_group", "identifier": "Arn", - "path": "../../examples/resources/awscc_inspector_resource_group/import.sh" + "path": "./examples/resources/awscc_inspector_resource_group/import.sh" }, { "resource": "awscc_inspectorv2_cis_scan_configuration", "identifier": "Arn", - "path": "../../examples/resources/awscc_inspectorv2_cis_scan_configuration/import.sh" + "path": "./examples/resources/awscc_inspectorv2_cis_scan_configuration/import.sh" }, { "resource": "awscc_inspectorv2_filter", "identifier": "Arn", - "path": "../../examples/resources/awscc_inspectorv2_filter/import.sh" + "path": "./examples/resources/awscc_inspectorv2_filter/import.sh" }, { "resource": "awscc_internetmonitor_monitor", "identifier": "MonitorName", - "path": "../../examples/resources/awscc_internetmonitor_monitor/import.sh" + "path": "./examples/resources/awscc_internetmonitor_monitor/import.sh" }, { "resource": "awscc_iot_account_audit_configuration", "identifier": "AccountId", - "path": "../../examples/resources/awscc_iot_account_audit_configuration/import.sh" + "path": "./examples/resources/awscc_iot_account_audit_configuration/import.sh" }, { "resource": "awscc_iot_authorizer", "identifier": "AuthorizerName", - "path": "../../examples/resources/awscc_iot_authorizer/import.sh" + "path": "./examples/resources/awscc_iot_authorizer/import.sh" }, { "resource": "awscc_iot_billing_group", "identifier": "BillingGroupName", - "path": "../../examples/resources/awscc_iot_billing_group/import.sh" + "path": "./examples/resources/awscc_iot_billing_group/import.sh" }, { "resource": "awscc_iot_ca_certificate", "identifier": "Id", - "path": "../../examples/resources/awscc_iot_ca_certificate/import.sh" + "path": "./examples/resources/awscc_iot_ca_certificate/import.sh" }, { "resource": "awscc_iot_certificate", "identifier": "Id", - "path": "../../examples/resources/awscc_iot_certificate/import.sh" + "path": "./examples/resources/awscc_iot_certificate/import.sh" }, { "resource": "awscc_iot_certificate_provider", "identifier": "CertificateProviderName", - "path": "../../examples/resources/awscc_iot_certificate_provider/import.sh" + "path": "./examples/resources/awscc_iot_certificate_provider/import.sh" }, { "resource": "awscc_iot_custom_metric", "identifier": "MetricName", - "path": "../../examples/resources/awscc_iot_custom_metric/import.sh" + "path": "./examples/resources/awscc_iot_custom_metric/import.sh" }, { "resource": "awscc_iot_dimension", "identifier": "Name", - "path": "../../examples/resources/awscc_iot_dimension/import.sh" + "path": "./examples/resources/awscc_iot_dimension/import.sh" }, { "resource": "awscc_iot_domain_configuration", "identifier": "DomainConfigurationName", - "path": "../../examples/resources/awscc_iot_domain_configuration/import.sh" + "path": "./examples/resources/awscc_iot_domain_configuration/import.sh" }, { "resource": "awscc_iot_fleet_metric", "identifier": "MetricName", - "path": "../../examples/resources/awscc_iot_fleet_metric/import.sh" + "path": "./examples/resources/awscc_iot_fleet_metric/import.sh" }, { "resource": "awscc_iot_job_template", "identifier": "JobTemplateId", - "path": "../../examples/resources/awscc_iot_job_template/import.sh" + "path": "./examples/resources/awscc_iot_job_template/import.sh" }, { "resource": "awscc_iot_logging", "identifier": "AccountId", - "path": "../../examples/resources/awscc_iot_logging/import.sh" + "path": "./examples/resources/awscc_iot_logging/import.sh" }, { "resource": "awscc_iot_mitigation_action", "identifier": "ActionName", - "path": "../../examples/resources/awscc_iot_mitigation_action/import.sh" + "path": "./examples/resources/awscc_iot_mitigation_action/import.sh" }, { "resource": "awscc_iot_policy", "identifier": "Id", - "path": "../../examples/resources/awscc_iot_policy/import.sh" + "path": "./examples/resources/awscc_iot_policy/import.sh" }, { "resource": "awscc_iot_provisioning_template", "identifier": "TemplateName", - "path": "../../examples/resources/awscc_iot_provisioning_template/import.sh" + "path": "./examples/resources/awscc_iot_provisioning_template/import.sh" }, { "resource": "awscc_iot_resource_specific_logging", "identifier": "TargetId", - "path": "../../examples/resources/awscc_iot_resource_specific_logging/import.sh" + "path": "./examples/resources/awscc_iot_resource_specific_logging/import.sh" }, { "resource": "awscc_iot_role_alias", "identifier": "RoleAlias", - "path": "../../examples/resources/awscc_iot_role_alias/import.sh" + "path": "./examples/resources/awscc_iot_role_alias/import.sh" }, { "resource": "awscc_iot_scheduled_audit", "identifier": "ScheduledAuditName", - "path": "../../examples/resources/awscc_iot_scheduled_audit/import.sh" + "path": "./examples/resources/awscc_iot_scheduled_audit/import.sh" }, { "resource": "awscc_iot_security_profile", "identifier": "SecurityProfileName", - "path": "../../examples/resources/awscc_iot_security_profile/import.sh" + "path": "./examples/resources/awscc_iot_security_profile/import.sh" }, { "resource": "awscc_iot_software_package", "identifier": "PackageName", - "path": "../../examples/resources/awscc_iot_software_package/import.sh" + "path": "./examples/resources/awscc_iot_software_package/import.sh" }, { "resource": "awscc_iot_software_package_version", "identifier": "PackageName,VersionName", - "path": "../../examples/resources/awscc_iot_software_package_version/import.sh" + "path": "./examples/resources/awscc_iot_software_package_version/import.sh" }, { "resource": "awscc_iot_thing", "identifier": "ThingName", - "path": "../../examples/resources/awscc_iot_thing/import.sh" + "path": "./examples/resources/awscc_iot_thing/import.sh" }, { "resource": "awscc_iot_thing_group", "identifier": "ThingGroupName", - "path": "../../examples/resources/awscc_iot_thing_group/import.sh" + "path": "./examples/resources/awscc_iot_thing_group/import.sh" }, { "resource": "awscc_iot_thing_type", "identifier": "ThingTypeName", - "path": "../../examples/resources/awscc_iot_thing_type/import.sh" + "path": "./examples/resources/awscc_iot_thing_type/import.sh" }, { "resource": "awscc_iot_topic_rule", "identifier": "RuleName", - "path": "../../examples/resources/awscc_iot_topic_rule/import.sh" + "path": "./examples/resources/awscc_iot_topic_rule/import.sh" }, { "resource": "awscc_iot_topic_rule_destination", "identifier": "Arn", - "path": "../../examples/resources/awscc_iot_topic_rule_destination/import.sh" + "path": "./examples/resources/awscc_iot_topic_rule_destination/import.sh" }, { "resource": "awscc_iotanalytics_channel", "identifier": "ChannelName", - "path": "../../examples/resources/awscc_iotanalytics_channel/import.sh" + "path": "./examples/resources/awscc_iotanalytics_channel/import.sh" }, { "resource": "awscc_iotanalytics_dataset", "identifier": "DatasetName", - "path": "../../examples/resources/awscc_iotanalytics_dataset/import.sh" + "path": "./examples/resources/awscc_iotanalytics_dataset/import.sh" }, { "resource": "awscc_iotanalytics_datastore", "identifier": "DatastoreName", - "path": "../../examples/resources/awscc_iotanalytics_datastore/import.sh" + "path": "./examples/resources/awscc_iotanalytics_datastore/import.sh" }, { "resource": "awscc_iotanalytics_pipeline", "identifier": "PipelineName", - "path": "../../examples/resources/awscc_iotanalytics_pipeline/import.sh" + "path": "./examples/resources/awscc_iotanalytics_pipeline/import.sh" }, { "resource": "awscc_iotcoredeviceadvisor_suite_definition", "identifier": "SuiteDefinitionId", - "path": "../../examples/resources/awscc_iotcoredeviceadvisor_suite_definition/import.sh" + "path": "./examples/resources/awscc_iotcoredeviceadvisor_suite_definition/import.sh" }, { "resource": "awscc_iotevents_alarm_model", "identifier": "AlarmModelName", - "path": "../../examples/resources/awscc_iotevents_alarm_model/import.sh" + "path": "./examples/resources/awscc_iotevents_alarm_model/import.sh" }, { "resource": "awscc_iotevents_detector_model", "identifier": "DetectorModelName", - "path": "../../examples/resources/awscc_iotevents_detector_model/import.sh" + "path": "./examples/resources/awscc_iotevents_detector_model/import.sh" }, { "resource": "awscc_iotevents_input", "identifier": "InputName", - "path": "../../examples/resources/awscc_iotevents_input/import.sh" + "path": "./examples/resources/awscc_iotevents_input/import.sh" }, { "resource": "awscc_iotfleethub_application", "identifier": "ApplicationId", - "path": "../../examples/resources/awscc_iotfleethub_application/import.sh" + "path": "./examples/resources/awscc_iotfleethub_application/import.sh" }, { "resource": "awscc_iotfleetwise_campaign", "identifier": "Name", - "path": "../../examples/resources/awscc_iotfleetwise_campaign/import.sh" + "path": "./examples/resources/awscc_iotfleetwise_campaign/import.sh" }, { "resource": "awscc_iotfleetwise_fleet", "identifier": "Id", - "path": "../../examples/resources/awscc_iotfleetwise_fleet/import.sh" + "path": "./examples/resources/awscc_iotfleetwise_fleet/import.sh" }, { "resource": "awscc_iotfleetwise_model_manifest", "identifier": "Name", - "path": "../../examples/resources/awscc_iotfleetwise_model_manifest/import.sh" + "path": "./examples/resources/awscc_iotfleetwise_model_manifest/import.sh" }, { "resource": "awscc_iotfleetwise_signal_catalog", "identifier": "Name", - "path": "../../examples/resources/awscc_iotfleetwise_signal_catalog/import.sh" + "path": "./examples/resources/awscc_iotfleetwise_signal_catalog/import.sh" }, { "resource": "awscc_iotfleetwise_vehicle", "identifier": "Name", - "path": "../../examples/resources/awscc_iotfleetwise_vehicle/import.sh" + "path": "./examples/resources/awscc_iotfleetwise_vehicle/import.sh" }, { "resource": "awscc_iotsitewise_access_policy", "identifier": "AccessPolicyId", - "path": "../../examples/resources/awscc_iotsitewise_access_policy/import.sh" + "path": "./examples/resources/awscc_iotsitewise_access_policy/import.sh" }, { "resource": "awscc_iotsitewise_asset", "identifier": "AssetId", - "path": "../../examples/resources/awscc_iotsitewise_asset/import.sh" + "path": "./examples/resources/awscc_iotsitewise_asset/import.sh" }, { "resource": "awscc_iotsitewise_asset_model", "identifier": "AssetModelId", - "path": "../../examples/resources/awscc_iotsitewise_asset_model/import.sh" + "path": "./examples/resources/awscc_iotsitewise_asset_model/import.sh" }, { "resource": "awscc_iotsitewise_dashboard", "identifier": "DashboardId", - "path": "../../examples/resources/awscc_iotsitewise_dashboard/import.sh" + "path": "./examples/resources/awscc_iotsitewise_dashboard/import.sh" }, { "resource": "awscc_iotsitewise_gateway", "identifier": "GatewayId", - "path": "../../examples/resources/awscc_iotsitewise_gateway/import.sh" + "path": "./examples/resources/awscc_iotsitewise_gateway/import.sh" }, { "resource": "awscc_iotsitewise_portal", "identifier": "PortalId", - "path": "../../examples/resources/awscc_iotsitewise_portal/import.sh" + "path": "./examples/resources/awscc_iotsitewise_portal/import.sh" }, { "resource": "awscc_iotsitewise_project", "identifier": "ProjectId", - "path": "../../examples/resources/awscc_iotsitewise_project/import.sh" + "path": "./examples/resources/awscc_iotsitewise_project/import.sh" }, { "resource": "awscc_iottwinmaker_scene", "identifier": "WorkspaceId,SceneId", - "path": "../../examples/resources/awscc_iottwinmaker_scene/import.sh" + "path": "./examples/resources/awscc_iottwinmaker_scene/import.sh" }, { "resource": "awscc_iottwinmaker_sync_job", "identifier": "WorkspaceId,SyncSource", - "path": "../../examples/resources/awscc_iottwinmaker_sync_job/import.sh" + "path": "./examples/resources/awscc_iottwinmaker_sync_job/import.sh" }, { "resource": "awscc_iottwinmaker_workspace", "identifier": "WorkspaceId", - "path": "../../examples/resources/awscc_iottwinmaker_workspace/import.sh" + "path": "./examples/resources/awscc_iottwinmaker_workspace/import.sh" }, { "resource": "awscc_iotwireless_destination", "identifier": "Name", - "path": "../../examples/resources/awscc_iotwireless_destination/import.sh" + "path": "./examples/resources/awscc_iotwireless_destination/import.sh" }, { "resource": "awscc_iotwireless_device_profile", "identifier": "Id", - "path": "../../examples/resources/awscc_iotwireless_device_profile/import.sh" + "path": "./examples/resources/awscc_iotwireless_device_profile/import.sh" }, { "resource": "awscc_iotwireless_fuota_task", "identifier": "Id", - "path": "../../examples/resources/awscc_iotwireless_fuota_task/import.sh" + "path": "./examples/resources/awscc_iotwireless_fuota_task/import.sh" }, { "resource": "awscc_iotwireless_multicast_group", "identifier": "Id", - "path": "../../examples/resources/awscc_iotwireless_multicast_group/import.sh" + "path": "./examples/resources/awscc_iotwireless_multicast_group/import.sh" }, { "resource": "awscc_iotwireless_network_analyzer_configuration", "identifier": "Name", - "path": "../../examples/resources/awscc_iotwireless_network_analyzer_configuration/import.sh" + "path": "./examples/resources/awscc_iotwireless_network_analyzer_configuration/import.sh" }, { "resource": "awscc_iotwireless_partner_account", "identifier": "PartnerAccountId", - "path": "../../examples/resources/awscc_iotwireless_partner_account/import.sh" + "path": "./examples/resources/awscc_iotwireless_partner_account/import.sh" }, { "resource": "awscc_iotwireless_service_profile", "identifier": "Id", - "path": "../../examples/resources/awscc_iotwireless_service_profile/import.sh" + "path": "./examples/resources/awscc_iotwireless_service_profile/import.sh" }, { "resource": "awscc_iotwireless_task_definition", "identifier": "Id", - "path": "../../examples/resources/awscc_iotwireless_task_definition/import.sh" + "path": "./examples/resources/awscc_iotwireless_task_definition/import.sh" }, { "resource": "awscc_iotwireless_wireless_device", "identifier": "Id", - "path": "../../examples/resources/awscc_iotwireless_wireless_device/import.sh" + "path": "./examples/resources/awscc_iotwireless_wireless_device/import.sh" }, { "resource": "awscc_iotwireless_wireless_device_import_task", "identifier": "Id", - "path": "../../examples/resources/awscc_iotwireless_wireless_device_import_task/import.sh" + "path": "./examples/resources/awscc_iotwireless_wireless_device_import_task/import.sh" }, { "resource": "awscc_iotwireless_wireless_gateway", "identifier": "Id", - "path": "../../examples/resources/awscc_iotwireless_wireless_gateway/import.sh" + "path": "./examples/resources/awscc_iotwireless_wireless_gateway/import.sh" }, { "resource": "awscc_kms_alias", "identifier": "AliasName", - "path": "../../examples/resources/awscc_kms_alias/import.sh" + "path": "./examples/resources/awscc_kms_alias/import.sh" }, { "resource": "awscc_kms_key", "identifier": "KeyId", - "path": "../../examples/resources/awscc_kms_key/import.sh" + "path": "./examples/resources/awscc_kms_key/import.sh" }, { "resource": "awscc_kms_replica_key", "identifier": "KeyId", - "path": "../../examples/resources/awscc_kms_replica_key/import.sh" + "path": "./examples/resources/awscc_kms_replica_key/import.sh" }, { "resource": "awscc_kafkaconnect_connector", "identifier": "ConnectorArn", - "path": "../../examples/resources/awscc_kafkaconnect_connector/import.sh" + "path": "./examples/resources/awscc_kafkaconnect_connector/import.sh" }, { "resource": "awscc_kafkaconnect_custom_plugin", "identifier": "CustomPluginArn", - "path": "../../examples/resources/awscc_kafkaconnect_custom_plugin/import.sh" + "path": "./examples/resources/awscc_kafkaconnect_custom_plugin/import.sh" }, { "resource": "awscc_kafkaconnect_worker_configuration", "identifier": "WorkerConfigurationArn", - "path": "../../examples/resources/awscc_kafkaconnect_worker_configuration/import.sh" + "path": "./examples/resources/awscc_kafkaconnect_worker_configuration/import.sh" }, { "resource": "awscc_kendra_data_source", "identifier": "Id,IndexId", - "path": "../../examples/resources/awscc_kendra_data_source/import.sh" + "path": "./examples/resources/awscc_kendra_data_source/import.sh" }, { "resource": "awscc_kendra_faq", "identifier": "Id,IndexId", - "path": "../../examples/resources/awscc_kendra_faq/import.sh" + "path": "./examples/resources/awscc_kendra_faq/import.sh" }, { "resource": "awscc_kendra_index", "identifier": "Id", - "path": "../../examples/resources/awscc_kendra_index/import.sh" + "path": "./examples/resources/awscc_kendra_index/import.sh" }, { "resource": "awscc_kendraranking_execution_plan", "identifier": "Id", - "path": "../../examples/resources/awscc_kendraranking_execution_plan/import.sh" + "path": "./examples/resources/awscc_kendraranking_execution_plan/import.sh" }, { "resource": "awscc_kinesis_stream", "identifier": "Name", - "path": "../../examples/resources/awscc_kinesis_stream/import.sh" + "path": "./examples/resources/awscc_kinesis_stream/import.sh" }, { "resource": "awscc_kinesisanalyticsv2_application", "identifier": "ApplicationName", - "path": "../../examples/resources/awscc_kinesisanalyticsv2_application/import.sh" + "path": "./examples/resources/awscc_kinesisanalyticsv2_application/import.sh" }, { "resource": "awscc_kinesisfirehose_delivery_stream", "identifier": "DeliveryStreamName", - "path": "../../examples/resources/awscc_kinesisfirehose_delivery_stream/import.sh" + "path": "./examples/resources/awscc_kinesisfirehose_delivery_stream/import.sh" }, { "resource": "awscc_kinesisvideo_signaling_channel", "identifier": "Name", - "path": "../../examples/resources/awscc_kinesisvideo_signaling_channel/import.sh" + "path": "./examples/resources/awscc_kinesisvideo_signaling_channel/import.sh" }, { "resource": "awscc_kinesisvideo_stream", "identifier": "Name", - "path": "../../examples/resources/awscc_kinesisvideo_stream/import.sh" + "path": "./examples/resources/awscc_kinesisvideo_stream/import.sh" }, { "resource": "awscc_lakeformation_data_cells_filter", "identifier": "TableCatalogId,DatabaseName,TableName,Name", - "path": "../../examples/resources/awscc_lakeformation_data_cells_filter/import.sh" + "path": "./examples/resources/awscc_lakeformation_data_cells_filter/import.sh" }, { "resource": "awscc_lakeformation_principal_permissions", "identifier": "PrincipalIdentifier,ResourceIdentifier", - "path": "../../examples/resources/awscc_lakeformation_principal_permissions/import.sh" + "path": "./examples/resources/awscc_lakeformation_principal_permissions/import.sh" }, { "resource": "awscc_lakeformation_tag", "identifier": "TagKey", - "path": "../../examples/resources/awscc_lakeformation_tag/import.sh" + "path": "./examples/resources/awscc_lakeformation_tag/import.sh" }, { "resource": "awscc_lakeformation_tag_association", "identifier": "ResourceIdentifier,TagsIdentifier", - "path": "../../examples/resources/awscc_lakeformation_tag_association/import.sh" + "path": "./examples/resources/awscc_lakeformation_tag_association/import.sh" }, { "resource": "awscc_lambda_alias", "identifier": "AliasArn", - "path": "../../examples/resources/awscc_lambda_alias/import.sh" + "path": "./examples/resources/awscc_lambda_alias/import.sh" }, { "resource": "awscc_lambda_code_signing_config", "identifier": "CodeSigningConfigArn", - "path": "../../examples/resources/awscc_lambda_code_signing_config/import.sh" + "path": "./examples/resources/awscc_lambda_code_signing_config/import.sh" }, { "resource": "awscc_lambda_event_invoke_config", "identifier": "FunctionName,Qualifier", - "path": "../../examples/resources/awscc_lambda_event_invoke_config/import.sh" + "path": "./examples/resources/awscc_lambda_event_invoke_config/import.sh" }, { "resource": "awscc_lambda_event_source_mapping", "identifier": "Id", - "path": "../../examples/resources/awscc_lambda_event_source_mapping/import.sh" + "path": "./examples/resources/awscc_lambda_event_source_mapping/import.sh" }, { "resource": "awscc_lambda_function", "identifier": "FunctionName", - "path": "../../examples/resources/awscc_lambda_function/import.sh" + "path": "./examples/resources/awscc_lambda_function/import.sh" }, { "resource": "awscc_lambda_layer_version", "identifier": "LayerVersionArn", - "path": "../../examples/resources/awscc_lambda_layer_version/import.sh" + "path": "./examples/resources/awscc_lambda_layer_version/import.sh" }, { "resource": "awscc_lambda_layer_version_permission", "identifier": "Id", - "path": "../../examples/resources/awscc_lambda_layer_version_permission/import.sh" + "path": "./examples/resources/awscc_lambda_layer_version_permission/import.sh" }, { "resource": "awscc_lambda_permission", "identifier": "FunctionName,Id", - "path": "../../examples/resources/awscc_lambda_permission/import.sh" + "path": "./examples/resources/awscc_lambda_permission/import.sh" }, { "resource": "awscc_lambda_url", "identifier": "FunctionArn", - "path": "../../examples/resources/awscc_lambda_url/import.sh" + "path": "./examples/resources/awscc_lambda_url/import.sh" }, { "resource": "awscc_lambda_version", "identifier": "FunctionArn", - "path": "../../examples/resources/awscc_lambda_version/import.sh" + "path": "./examples/resources/awscc_lambda_version/import.sh" }, { "resource": "awscc_launchwizard_deployment", "identifier": "Arn", - "path": "../../examples/resources/awscc_launchwizard_deployment/import.sh" + "path": "./examples/resources/awscc_launchwizard_deployment/import.sh" }, { "resource": "awscc_lex_bot", "identifier": "Id", - "path": "../../examples/resources/awscc_lex_bot/import.sh" + "path": "./examples/resources/awscc_lex_bot/import.sh" }, { "resource": "awscc_lex_bot_alias", "identifier": "BotAliasId,BotId", - "path": "../../examples/resources/awscc_lex_bot_alias/import.sh" + "path": "./examples/resources/awscc_lex_bot_alias/import.sh" }, { "resource": "awscc_lex_bot_version", "identifier": "BotId,BotVersion", - "path": "../../examples/resources/awscc_lex_bot_version/import.sh" + "path": "./examples/resources/awscc_lex_bot_version/import.sh" }, { "resource": "awscc_lex_resource_policy", "identifier": "Id", - "path": "../../examples/resources/awscc_lex_resource_policy/import.sh" + "path": "./examples/resources/awscc_lex_resource_policy/import.sh" }, { "resource": "awscc_licensemanager_grant", "identifier": "GrantArn", - "path": "../../examples/resources/awscc_licensemanager_grant/import.sh" + "path": "./examples/resources/awscc_licensemanager_grant/import.sh" }, { "resource": "awscc_licensemanager_license", "identifier": "LicenseArn", - "path": "../../examples/resources/awscc_licensemanager_license/import.sh" + "path": "./examples/resources/awscc_licensemanager_license/import.sh" }, { "resource": "awscc_lightsail_alarm", "identifier": "AlarmName", - "path": "../../examples/resources/awscc_lightsail_alarm/import.sh" + "path": "./examples/resources/awscc_lightsail_alarm/import.sh" }, { "resource": "awscc_lightsail_bucket", "identifier": "BucketName", - "path": "../../examples/resources/awscc_lightsail_bucket/import.sh" + "path": "./examples/resources/awscc_lightsail_bucket/import.sh" }, { "resource": "awscc_lightsail_certificate", "identifier": "CertificateName", - "path": "../../examples/resources/awscc_lightsail_certificate/import.sh" + "path": "./examples/resources/awscc_lightsail_certificate/import.sh" }, { "resource": "awscc_lightsail_container", "identifier": "ServiceName", - "path": "../../examples/resources/awscc_lightsail_container/import.sh" + "path": "./examples/resources/awscc_lightsail_container/import.sh" }, { "resource": "awscc_lightsail_database", "identifier": "RelationalDatabaseName", - "path": "../../examples/resources/awscc_lightsail_database/import.sh" + "path": "./examples/resources/awscc_lightsail_database/import.sh" }, { "resource": "awscc_lightsail_disk", "identifier": "DiskName", - "path": "../../examples/resources/awscc_lightsail_disk/import.sh" + "path": "./examples/resources/awscc_lightsail_disk/import.sh" }, { "resource": "awscc_lightsail_distribution", "identifier": "DistributionName", - "path": "../../examples/resources/awscc_lightsail_distribution/import.sh" + "path": "./examples/resources/awscc_lightsail_distribution/import.sh" }, { "resource": "awscc_lightsail_instance", "identifier": "InstanceName", - "path": "../../examples/resources/awscc_lightsail_instance/import.sh" + "path": "./examples/resources/awscc_lightsail_instance/import.sh" }, { "resource": "awscc_lightsail_load_balancer", "identifier": "LoadBalancerName", - "path": "../../examples/resources/awscc_lightsail_load_balancer/import.sh" + "path": "./examples/resources/awscc_lightsail_load_balancer/import.sh" }, { "resource": "awscc_lightsail_load_balancer_tls_certificate", "identifier": "CertificateName,LoadBalancerName", - "path": "../../examples/resources/awscc_lightsail_load_balancer_tls_certificate/import.sh" + "path": "./examples/resources/awscc_lightsail_load_balancer_tls_certificate/import.sh" }, { "resource": "awscc_lightsail_static_ip", "identifier": "StaticIpName", - "path": "../../examples/resources/awscc_lightsail_static_ip/import.sh" + "path": "./examples/resources/awscc_lightsail_static_ip/import.sh" }, { "resource": "awscc_location_api_key", "identifier": "KeyName", - "path": "../../examples/resources/awscc_location_api_key/import.sh" + "path": "./examples/resources/awscc_location_api_key/import.sh" }, { "resource": "awscc_location_geofence_collection", "identifier": "CollectionName", - "path": "../../examples/resources/awscc_location_geofence_collection/import.sh" + "path": "./examples/resources/awscc_location_geofence_collection/import.sh" }, { "resource": "awscc_location_map", "identifier": "MapName", - "path": "../../examples/resources/awscc_location_map/import.sh" + "path": "./examples/resources/awscc_location_map/import.sh" }, { "resource": "awscc_location_place_index", "identifier": "IndexName", - "path": "../../examples/resources/awscc_location_place_index/import.sh" + "path": "./examples/resources/awscc_location_place_index/import.sh" }, { "resource": "awscc_location_route_calculator", "identifier": "CalculatorName", - "path": "../../examples/resources/awscc_location_route_calculator/import.sh" + "path": "./examples/resources/awscc_location_route_calculator/import.sh" }, { "resource": "awscc_location_tracker", "identifier": "TrackerName", - "path": "../../examples/resources/awscc_location_tracker/import.sh" + "path": "./examples/resources/awscc_location_tracker/import.sh" }, { "resource": "awscc_location_tracker_consumer", "identifier": "TrackerName,ConsumerArn", - "path": "../../examples/resources/awscc_location_tracker_consumer/import.sh" + "path": "./examples/resources/awscc_location_tracker_consumer/import.sh" }, { "resource": "awscc_logs_account_policy", "identifier": "AccountId,PolicyType,PolicyName", - "path": "../../examples/resources/awscc_logs_account_policy/import.sh" + "path": "./examples/resources/awscc_logs_account_policy/import.sh" }, { "resource": "awscc_logs_delivery", "identifier": "DeliveryId", - "path": "../../examples/resources/awscc_logs_delivery/import.sh" + "path": "./examples/resources/awscc_logs_delivery/import.sh" }, { "resource": "awscc_logs_delivery_destination", "identifier": "Name", - "path": "../../examples/resources/awscc_logs_delivery_destination/import.sh" + "path": "./examples/resources/awscc_logs_delivery_destination/import.sh" }, { "resource": "awscc_logs_delivery_source", "identifier": "Name", - "path": "../../examples/resources/awscc_logs_delivery_source/import.sh" + "path": "./examples/resources/awscc_logs_delivery_source/import.sh" }, { "resource": "awscc_logs_destination", "identifier": "DestinationName", - "path": "../../examples/resources/awscc_logs_destination/import.sh" + "path": "./examples/resources/awscc_logs_destination/import.sh" }, { "resource": "awscc_logs_log_anomaly_detector", "identifier": "AnomalyDetectorArn", - "path": "../../examples/resources/awscc_logs_log_anomaly_detector/import.sh" + "path": "./examples/resources/awscc_logs_log_anomaly_detector/import.sh" }, { "resource": "awscc_logs_log_group", "identifier": "LogGroupName", - "path": "../../examples/resources/awscc_logs_log_group/import.sh" + "path": "./examples/resources/awscc_logs_log_group/import.sh" }, { "resource": "awscc_logs_log_stream", "identifier": "LogGroupName,LogStreamName", - "path": "../../examples/resources/awscc_logs_log_stream/import.sh" + "path": "./examples/resources/awscc_logs_log_stream/import.sh" }, { "resource": "awscc_logs_metric_filter", "identifier": "LogGroupName,FilterName", - "path": "../../examples/resources/awscc_logs_metric_filter/import.sh" + "path": "./examples/resources/awscc_logs_metric_filter/import.sh" }, { "resource": "awscc_logs_query_definition", "identifier": "QueryDefinitionId", - "path": "../../examples/resources/awscc_logs_query_definition/import.sh" + "path": "./examples/resources/awscc_logs_query_definition/import.sh" }, { "resource": "awscc_logs_resource_policy", "identifier": "PolicyName", - "path": "../../examples/resources/awscc_logs_resource_policy/import.sh" + "path": "./examples/resources/awscc_logs_resource_policy/import.sh" }, { "resource": "awscc_logs_subscription_filter", "identifier": "FilterName,LogGroupName", - "path": "../../examples/resources/awscc_logs_subscription_filter/import.sh" + "path": "./examples/resources/awscc_logs_subscription_filter/import.sh" }, { "resource": "awscc_lookoutequipment_inference_scheduler", "identifier": "InferenceSchedulerName", - "path": "../../examples/resources/awscc_lookoutequipment_inference_scheduler/import.sh" + "path": "./examples/resources/awscc_lookoutequipment_inference_scheduler/import.sh" }, { "resource": "awscc_lookoutmetrics_alert", "identifier": "Arn", - "path": "../../examples/resources/awscc_lookoutmetrics_alert/import.sh" + "path": "./examples/resources/awscc_lookoutmetrics_alert/import.sh" }, { "resource": "awscc_lookoutmetrics_anomaly_detector", "identifier": "Arn", - "path": "../../examples/resources/awscc_lookoutmetrics_anomaly_detector/import.sh" + "path": "./examples/resources/awscc_lookoutmetrics_anomaly_detector/import.sh" }, { "resource": "awscc_lookoutvision_project", "identifier": "ProjectName", - "path": "../../examples/resources/awscc_lookoutvision_project/import.sh" + "path": "./examples/resources/awscc_lookoutvision_project/import.sh" }, { "resource": "awscc_m2_application", "identifier": "ApplicationArn", - "path": "../../examples/resources/awscc_m2_application/import.sh" + "path": "./examples/resources/awscc_m2_application/import.sh" }, { "resource": "awscc_m2_environment", "identifier": "EnvironmentArn", - "path": "../../examples/resources/awscc_m2_environment/import.sh" + "path": "./examples/resources/awscc_m2_environment/import.sh" }, { "resource": "awscc_msk_batch_scram_secret", "identifier": "ClusterArn", - "path": "../../examples/resources/awscc_msk_batch_scram_secret/import.sh" + "path": "./examples/resources/awscc_msk_batch_scram_secret/import.sh" }, { "resource": "awscc_msk_cluster", "identifier": "Arn", - "path": "../../examples/resources/awscc_msk_cluster/import.sh" + "path": "./examples/resources/awscc_msk_cluster/import.sh" }, { "resource": "awscc_msk_cluster_policy", "identifier": "ClusterArn", - "path": "../../examples/resources/awscc_msk_cluster_policy/import.sh" + "path": "./examples/resources/awscc_msk_cluster_policy/import.sh" }, { "resource": "awscc_msk_configuration", "identifier": "Arn", - "path": "../../examples/resources/awscc_msk_configuration/import.sh" + "path": "./examples/resources/awscc_msk_configuration/import.sh" }, { "resource": "awscc_msk_replicator", "identifier": "ReplicatorArn", - "path": "../../examples/resources/awscc_msk_replicator/import.sh" + "path": "./examples/resources/awscc_msk_replicator/import.sh" }, { "resource": "awscc_msk_serverless_cluster", "identifier": "Arn", - "path": "../../examples/resources/awscc_msk_serverless_cluster/import.sh" + "path": "./examples/resources/awscc_msk_serverless_cluster/import.sh" }, { "resource": "awscc_msk_vpc_connection", "identifier": "Arn", - "path": "../../examples/resources/awscc_msk_vpc_connection/import.sh" + "path": "./examples/resources/awscc_msk_vpc_connection/import.sh" }, { "resource": "awscc_mwaa_environment", "identifier": "Name", - "path": "../../examples/resources/awscc_mwaa_environment/import.sh" + "path": "./examples/resources/awscc_mwaa_environment/import.sh" }, { "resource": "awscc_macie_allow_list", "identifier": "Id", - "path": "../../examples/resources/awscc_macie_allow_list/import.sh" + "path": "./examples/resources/awscc_macie_allow_list/import.sh" }, { "resource": "awscc_macie_custom_data_identifier", "identifier": "Id", - "path": "../../examples/resources/awscc_macie_custom_data_identifier/import.sh" + "path": "./examples/resources/awscc_macie_custom_data_identifier/import.sh" }, { "resource": "awscc_macie_findings_filter", "identifier": "Id", - "path": "../../examples/resources/awscc_macie_findings_filter/import.sh" + "path": "./examples/resources/awscc_macie_findings_filter/import.sh" }, { "resource": "awscc_macie_session", "identifier": "AwsAccountId", - "path": "../../examples/resources/awscc_macie_session/import.sh" + "path": "./examples/resources/awscc_macie_session/import.sh" }, { "resource": "awscc_managedblockchain_accessor", "identifier": "Id", - "path": "../../examples/resources/awscc_managedblockchain_accessor/import.sh" + "path": "./examples/resources/awscc_managedblockchain_accessor/import.sh" }, { "resource": "awscc_mediaconnect_bridge", "identifier": "BridgeArn", - "path": "../../examples/resources/awscc_mediaconnect_bridge/import.sh" + "path": "./examples/resources/awscc_mediaconnect_bridge/import.sh" }, { "resource": "awscc_mediaconnect_bridge_output", "identifier": "BridgeArn,Name", - "path": "../../examples/resources/awscc_mediaconnect_bridge_output/import.sh" + "path": "./examples/resources/awscc_mediaconnect_bridge_output/import.sh" }, { "resource": "awscc_mediaconnect_bridge_source", "identifier": "BridgeArn,Name", - "path": "../../examples/resources/awscc_mediaconnect_bridge_source/import.sh" + "path": "./examples/resources/awscc_mediaconnect_bridge_source/import.sh" }, { "resource": "awscc_mediaconnect_flow", "identifier": "FlowArn", - "path": "../../examples/resources/awscc_mediaconnect_flow/import.sh" + "path": "./examples/resources/awscc_mediaconnect_flow/import.sh" }, { "resource": "awscc_mediaconnect_flow_entitlement", "identifier": "EntitlementArn", - "path": "../../examples/resources/awscc_mediaconnect_flow_entitlement/import.sh" + "path": "./examples/resources/awscc_mediaconnect_flow_entitlement/import.sh" }, { "resource": "awscc_mediaconnect_flow_output", "identifier": "OutputArn", - "path": "../../examples/resources/awscc_mediaconnect_flow_output/import.sh" + "path": "./examples/resources/awscc_mediaconnect_flow_output/import.sh" }, { "resource": "awscc_mediaconnect_flow_source", "identifier": "SourceArn", - "path": "../../examples/resources/awscc_mediaconnect_flow_source/import.sh" + "path": "./examples/resources/awscc_mediaconnect_flow_source/import.sh" }, { "resource": "awscc_mediaconnect_flow_vpc_interface", "identifier": "FlowArn,Name", - "path": "../../examples/resources/awscc_mediaconnect_flow_vpc_interface/import.sh" + "path": "./examples/resources/awscc_mediaconnect_flow_vpc_interface/import.sh" }, { "resource": "awscc_mediaconnect_gateway", "identifier": "GatewayArn", - "path": "../../examples/resources/awscc_mediaconnect_gateway/import.sh" + "path": "./examples/resources/awscc_mediaconnect_gateway/import.sh" }, { "resource": "awscc_medialive_multiplex", "identifier": "Id", - "path": "../../examples/resources/awscc_medialive_multiplex/import.sh" + "path": "./examples/resources/awscc_medialive_multiplex/import.sh" }, { "resource": "awscc_medialive_multiplexprogram", "identifier": "ProgramName,MultiplexId", - "path": "../../examples/resources/awscc_medialive_multiplexprogram/import.sh" + "path": "./examples/resources/awscc_medialive_multiplexprogram/import.sh" }, { "resource": "awscc_mediapackage_asset", "identifier": "Id", - "path": "../../examples/resources/awscc_mediapackage_asset/import.sh" + "path": "./examples/resources/awscc_mediapackage_asset/import.sh" }, { "resource": "awscc_mediapackage_channel", "identifier": "Id", - "path": "../../examples/resources/awscc_mediapackage_channel/import.sh" + "path": "./examples/resources/awscc_mediapackage_channel/import.sh" }, { "resource": "awscc_mediapackage_origin_endpoint", "identifier": "Id", - "path": "../../examples/resources/awscc_mediapackage_origin_endpoint/import.sh" + "path": "./examples/resources/awscc_mediapackage_origin_endpoint/import.sh" }, { "resource": "awscc_mediapackage_packaging_configuration", "identifier": "Id", - "path": "../../examples/resources/awscc_mediapackage_packaging_configuration/import.sh" + "path": "./examples/resources/awscc_mediapackage_packaging_configuration/import.sh" }, { "resource": "awscc_mediapackage_packaging_group", "identifier": "Id", - "path": "../../examples/resources/awscc_mediapackage_packaging_group/import.sh" + "path": "./examples/resources/awscc_mediapackage_packaging_group/import.sh" }, { "resource": "awscc_mediapackagev2_channel", "identifier": "Arn", - "path": "../../examples/resources/awscc_mediapackagev2_channel/import.sh" + "path": "./examples/resources/awscc_mediapackagev2_channel/import.sh" }, { "resource": "awscc_mediapackagev2_channel_group", "identifier": "Arn", - "path": "../../examples/resources/awscc_mediapackagev2_channel_group/import.sh" + "path": "./examples/resources/awscc_mediapackagev2_channel_group/import.sh" }, { "resource": "awscc_mediapackagev2_channel_policy", "identifier": "ChannelGroupName,ChannelName", - "path": "../../examples/resources/awscc_mediapackagev2_channel_policy/import.sh" + "path": "./examples/resources/awscc_mediapackagev2_channel_policy/import.sh" }, { "resource": "awscc_mediapackagev2_origin_endpoint", "identifier": "Arn", - "path": "../../examples/resources/awscc_mediapackagev2_origin_endpoint/import.sh" + "path": "./examples/resources/awscc_mediapackagev2_origin_endpoint/import.sh" }, { "resource": "awscc_mediapackagev2_origin_endpoint_policy", "identifier": "ChannelGroupName,ChannelName,OriginEndpointName", - "path": "../../examples/resources/awscc_mediapackagev2_origin_endpoint_policy/import.sh" + "path": "./examples/resources/awscc_mediapackagev2_origin_endpoint_policy/import.sh" }, { "resource": "awscc_mediatailor_channel", "identifier": "ChannelName", - "path": "../../examples/resources/awscc_mediatailor_channel/import.sh" + "path": "./examples/resources/awscc_mediatailor_channel/import.sh" }, { "resource": "awscc_mediatailor_channel_policy", "identifier": "ChannelName", - "path": "../../examples/resources/awscc_mediatailor_channel_policy/import.sh" + "path": "./examples/resources/awscc_mediatailor_channel_policy/import.sh" }, { "resource": "awscc_mediatailor_live_source", "identifier": "LiveSourceName,SourceLocationName", - "path": "../../examples/resources/awscc_mediatailor_live_source/import.sh" + "path": "./examples/resources/awscc_mediatailor_live_source/import.sh" }, { "resource": "awscc_mediatailor_source_location", "identifier": "SourceLocationName", - "path": "../../examples/resources/awscc_mediatailor_source_location/import.sh" + "path": "./examples/resources/awscc_mediatailor_source_location/import.sh" }, { "resource": "awscc_mediatailor_vod_source", "identifier": "SourceLocationName,VodSourceName", - "path": "../../examples/resources/awscc_mediatailor_vod_source/import.sh" + "path": "./examples/resources/awscc_mediatailor_vod_source/import.sh" }, { "resource": "awscc_memorydb_acl", "identifier": "ACLName", - "path": "../../examples/resources/awscc_memorydb_acl/import.sh" + "path": "./examples/resources/awscc_memorydb_acl/import.sh" }, { "resource": "awscc_memorydb_cluster", "identifier": "ClusterName", - "path": "../../examples/resources/awscc_memorydb_cluster/import.sh" + "path": "./examples/resources/awscc_memorydb_cluster/import.sh" }, { "resource": "awscc_memorydb_parameter_group", "identifier": "ParameterGroupName", - "path": "../../examples/resources/awscc_memorydb_parameter_group/import.sh" + "path": "./examples/resources/awscc_memorydb_parameter_group/import.sh" }, { "resource": "awscc_memorydb_subnet_group", "identifier": "SubnetGroupName", - "path": "../../examples/resources/awscc_memorydb_subnet_group/import.sh" + "path": "./examples/resources/awscc_memorydb_subnet_group/import.sh" }, { "resource": "awscc_memorydb_user", "identifier": "UserName", - "path": "../../examples/resources/awscc_memorydb_user/import.sh" + "path": "./examples/resources/awscc_memorydb_user/import.sh" }, { "resource": "awscc_neptune_db_cluster", "identifier": "DBClusterIdentifier", - "path": "../../examples/resources/awscc_neptune_db_cluster/import.sh" + "path": "./examples/resources/awscc_neptune_db_cluster/import.sh" }, { "resource": "awscc_neptunegraph_graph", "identifier": "GraphId", - "path": "../../examples/resources/awscc_neptunegraph_graph/import.sh" + "path": "./examples/resources/awscc_neptunegraph_graph/import.sh" }, { "resource": "awscc_neptunegraph_private_graph_endpoint", "identifier": "PrivateGraphEndpointIdentifier", - "path": "../../examples/resources/awscc_neptunegraph_private_graph_endpoint/import.sh" + "path": "./examples/resources/awscc_neptunegraph_private_graph_endpoint/import.sh" }, { "resource": "awscc_networkfirewall_firewall", "identifier": "FirewallArn", - "path": "../../examples/resources/awscc_networkfirewall_firewall/import.sh" + "path": "./examples/resources/awscc_networkfirewall_firewall/import.sh" }, { "resource": "awscc_networkfirewall_firewall_policy", "identifier": "FirewallPolicyArn", - "path": "../../examples/resources/awscc_networkfirewall_firewall_policy/import.sh" + "path": "./examples/resources/awscc_networkfirewall_firewall_policy/import.sh" }, { "resource": "awscc_networkfirewall_logging_configuration", "identifier": "FirewallArn", - "path": "../../examples/resources/awscc_networkfirewall_logging_configuration/import.sh" + "path": "./examples/resources/awscc_networkfirewall_logging_configuration/import.sh" }, { "resource": "awscc_networkfirewall_rule_group", "identifier": "RuleGroupArn", - "path": "../../examples/resources/awscc_networkfirewall_rule_group/import.sh" + "path": "./examples/resources/awscc_networkfirewall_rule_group/import.sh" }, { "resource": "awscc_networkfirewall_tls_inspection_configuration", "identifier": "TLSInspectionConfigurationArn", - "path": "../../examples/resources/awscc_networkfirewall_tls_inspection_configuration/import.sh" + "path": "./examples/resources/awscc_networkfirewall_tls_inspection_configuration/import.sh" }, { "resource": "awscc_networkmanager_connect_attachment", "identifier": "AttachmentId", - "path": "../../examples/resources/awscc_networkmanager_connect_attachment/import.sh" + "path": "./examples/resources/awscc_networkmanager_connect_attachment/import.sh" }, { "resource": "awscc_networkmanager_connect_peer", "identifier": "ConnectPeerId", - "path": "../../examples/resources/awscc_networkmanager_connect_peer/import.sh" + "path": "./examples/resources/awscc_networkmanager_connect_peer/import.sh" }, { "resource": "awscc_networkmanager_core_network", "identifier": "CoreNetworkId", - "path": "../../examples/resources/awscc_networkmanager_core_network/import.sh" + "path": "./examples/resources/awscc_networkmanager_core_network/import.sh" }, { "resource": "awscc_networkmanager_customer_gateway_association", "identifier": "GlobalNetworkId,CustomerGatewayArn", - "path": "../../examples/resources/awscc_networkmanager_customer_gateway_association/import.sh" + "path": "./examples/resources/awscc_networkmanager_customer_gateway_association/import.sh" }, { "resource": "awscc_networkmanager_device", "identifier": "GlobalNetworkId,DeviceId", - "path": "../../examples/resources/awscc_networkmanager_device/import.sh" + "path": "./examples/resources/awscc_networkmanager_device/import.sh" }, { "resource": "awscc_networkmanager_global_network", "identifier": "Id", - "path": "../../examples/resources/awscc_networkmanager_global_network/import.sh" + "path": "./examples/resources/awscc_networkmanager_global_network/import.sh" }, { "resource": "awscc_networkmanager_link", "identifier": "GlobalNetworkId,LinkId", - "path": "../../examples/resources/awscc_networkmanager_link/import.sh" + "path": "./examples/resources/awscc_networkmanager_link/import.sh" }, { "resource": "awscc_networkmanager_link_association", "identifier": "GlobalNetworkId,DeviceId,LinkId", - "path": "../../examples/resources/awscc_networkmanager_link_association/import.sh" + "path": "./examples/resources/awscc_networkmanager_link_association/import.sh" }, { "resource": "awscc_networkmanager_site", "identifier": "GlobalNetworkId,SiteId", - "path": "../../examples/resources/awscc_networkmanager_site/import.sh" + "path": "./examples/resources/awscc_networkmanager_site/import.sh" }, { "resource": "awscc_networkmanager_site_to_site_vpn_attachment", "identifier": "AttachmentId", - "path": "../../examples/resources/awscc_networkmanager_site_to_site_vpn_attachment/import.sh" + "path": "./examples/resources/awscc_networkmanager_site_to_site_vpn_attachment/import.sh" }, { "resource": "awscc_networkmanager_transit_gateway_peering", "identifier": "PeeringId", - "path": "../../examples/resources/awscc_networkmanager_transit_gateway_peering/import.sh" + "path": "./examples/resources/awscc_networkmanager_transit_gateway_peering/import.sh" }, { "resource": "awscc_networkmanager_transit_gateway_registration", "identifier": "GlobalNetworkId,TransitGatewayArn", - "path": "../../examples/resources/awscc_networkmanager_transit_gateway_registration/import.sh" + "path": "./examples/resources/awscc_networkmanager_transit_gateway_registration/import.sh" }, { "resource": "awscc_networkmanager_transit_gateway_route_table_attachment", "identifier": "AttachmentId", - "path": "../../examples/resources/awscc_networkmanager_transit_gateway_route_table_attachment/import.sh" + "path": "./examples/resources/awscc_networkmanager_transit_gateway_route_table_attachment/import.sh" }, { "resource": "awscc_networkmanager_vpc_attachment", "identifier": "AttachmentId", - "path": "../../examples/resources/awscc_networkmanager_vpc_attachment/import.sh" + "path": "./examples/resources/awscc_networkmanager_vpc_attachment/import.sh" }, { "resource": "awscc_nimblestudio_launch_profile", "identifier": "LaunchProfileId,StudioId", - "path": "../../examples/resources/awscc_nimblestudio_launch_profile/import.sh" + "path": "./examples/resources/awscc_nimblestudio_launch_profile/import.sh" }, { "resource": "awscc_nimblestudio_streaming_image", "identifier": "StudioId,StreamingImageId", - "path": "../../examples/resources/awscc_nimblestudio_streaming_image/import.sh" + "path": "./examples/resources/awscc_nimblestudio_streaming_image/import.sh" }, { "resource": "awscc_nimblestudio_studio", "identifier": "StudioId", - "path": "../../examples/resources/awscc_nimblestudio_studio/import.sh" + "path": "./examples/resources/awscc_nimblestudio_studio/import.sh" }, { "resource": "awscc_nimblestudio_studio_component", "identifier": "StudioComponentId,StudioId", - "path": "../../examples/resources/awscc_nimblestudio_studio_component/import.sh" + "path": "./examples/resources/awscc_nimblestudio_studio_component/import.sh" }, { "resource": "awscc_osis_pipeline", "identifier": "PipelineArn", - "path": "../../examples/resources/awscc_osis_pipeline/import.sh" + "path": "./examples/resources/awscc_osis_pipeline/import.sh" }, { "resource": "awscc_oam_link", "identifier": "Arn", - "path": "../../examples/resources/awscc_oam_link/import.sh" + "path": "./examples/resources/awscc_oam_link/import.sh" }, { "resource": "awscc_oam_sink", "identifier": "Arn", - "path": "../../examples/resources/awscc_oam_sink/import.sh" + "path": "./examples/resources/awscc_oam_sink/import.sh" }, { "resource": "awscc_omics_reference_store", "identifier": "ReferenceStoreId", - "path": "../../examples/resources/awscc_omics_reference_store/import.sh" + "path": "./examples/resources/awscc_omics_reference_store/import.sh" }, { "resource": "awscc_omics_run_group", "identifier": "Id", - "path": "../../examples/resources/awscc_omics_run_group/import.sh" + "path": "./examples/resources/awscc_omics_run_group/import.sh" }, { "resource": "awscc_omics_sequence_store", "identifier": "SequenceStoreId", - "path": "../../examples/resources/awscc_omics_sequence_store/import.sh" + "path": "./examples/resources/awscc_omics_sequence_store/import.sh" }, { "resource": "awscc_omics_variant_store", "identifier": "Name", - "path": "../../examples/resources/awscc_omics_variant_store/import.sh" + "path": "./examples/resources/awscc_omics_variant_store/import.sh" }, { "resource": "awscc_omics_workflow", "identifier": "Id", - "path": "../../examples/resources/awscc_omics_workflow/import.sh" + "path": "./examples/resources/awscc_omics_workflow/import.sh" }, { "resource": "awscc_opensearchserverless_access_policy", "identifier": "Type,Name", - "path": "../../examples/resources/awscc_opensearchserverless_access_policy/import.sh" + "path": "./examples/resources/awscc_opensearchserverless_access_policy/import.sh" }, { "resource": "awscc_opensearchserverless_collection", "identifier": "Id", - "path": "../../examples/resources/awscc_opensearchserverless_collection/import.sh" + "path": "./examples/resources/awscc_opensearchserverless_collection/import.sh" }, { "resource": "awscc_opensearchserverless_lifecycle_policy", "identifier": "Type,Name", - "path": "../../examples/resources/awscc_opensearchserverless_lifecycle_policy/import.sh" + "path": "./examples/resources/awscc_opensearchserverless_lifecycle_policy/import.sh" }, { "resource": "awscc_opensearchserverless_security_config", "identifier": "Id", - "path": "../../examples/resources/awscc_opensearchserverless_security_config/import.sh" + "path": "./examples/resources/awscc_opensearchserverless_security_config/import.sh" }, { "resource": "awscc_opensearchserverless_security_policy", "identifier": "Type,Name", - "path": "../../examples/resources/awscc_opensearchserverless_security_policy/import.sh" + "path": "./examples/resources/awscc_opensearchserverless_security_policy/import.sh" }, { "resource": "awscc_opensearchserverless_vpc_endpoint", "identifier": "Id", - "path": "../../examples/resources/awscc_opensearchserverless_vpc_endpoint/import.sh" + "path": "./examples/resources/awscc_opensearchserverless_vpc_endpoint/import.sh" }, { "resource": "awscc_opensearchservice_domain", "identifier": "DomainName", - "path": "../../examples/resources/awscc_opensearchservice_domain/import.sh" + "path": "./examples/resources/awscc_opensearchservice_domain/import.sh" }, { "resource": "awscc_opsworkscm_server", "identifier": "ServerName", - "path": "../../examples/resources/awscc_opsworkscm_server/import.sh" + "path": "./examples/resources/awscc_opsworkscm_server/import.sh" }, { "resource": "awscc_organizations_account", "identifier": "AccountId", - "path": "../../examples/resources/awscc_organizations_account/import.sh" + "path": "./examples/resources/awscc_organizations_account/import.sh" }, { "resource": "awscc_organizations_organization", "identifier": "Id", - "path": "../../examples/resources/awscc_organizations_organization/import.sh" + "path": "./examples/resources/awscc_organizations_organization/import.sh" }, { "resource": "awscc_organizations_organizational_unit", "identifier": "Id", - "path": "../../examples/resources/awscc_organizations_organizational_unit/import.sh" + "path": "./examples/resources/awscc_organizations_organizational_unit/import.sh" }, { "resource": "awscc_organizations_policy", "identifier": "Id", - "path": "../../examples/resources/awscc_organizations_policy/import.sh" + "path": "./examples/resources/awscc_organizations_policy/import.sh" }, { "resource": "awscc_organizations_resource_policy", "identifier": "Id", - "path": "../../examples/resources/awscc_organizations_resource_policy/import.sh" + "path": "./examples/resources/awscc_organizations_resource_policy/import.sh" }, { "resource": "awscc_pcaconnectorad_connector", "identifier": "ConnectorArn", - "path": "../../examples/resources/awscc_pcaconnectorad_connector/import.sh" + "path": "./examples/resources/awscc_pcaconnectorad_connector/import.sh" }, { "resource": "awscc_pcaconnectorad_directory_registration", "identifier": "DirectoryRegistrationArn", - "path": "../../examples/resources/awscc_pcaconnectorad_directory_registration/import.sh" + "path": "./examples/resources/awscc_pcaconnectorad_directory_registration/import.sh" }, { "resource": "awscc_pcaconnectorad_service_principal_name", "identifier": "ConnectorArn,DirectoryRegistrationArn", - "path": "../../examples/resources/awscc_pcaconnectorad_service_principal_name/import.sh" + "path": "./examples/resources/awscc_pcaconnectorad_service_principal_name/import.sh" }, { "resource": "awscc_pcaconnectorad_template", "identifier": "TemplateArn", - "path": "../../examples/resources/awscc_pcaconnectorad_template/import.sh" + "path": "./examples/resources/awscc_pcaconnectorad_template/import.sh" }, { "resource": "awscc_pcaconnectorad_template_group_access_control_entry", "identifier": "GroupSecurityIdentifier,TemplateArn", - "path": "../../examples/resources/awscc_pcaconnectorad_template_group_access_control_entry/import.sh" + "path": "./examples/resources/awscc_pcaconnectorad_template_group_access_control_entry/import.sh" }, { "resource": "awscc_panorama_application_instance", "identifier": "ApplicationInstanceId", - "path": "../../examples/resources/awscc_panorama_application_instance/import.sh" + "path": "./examples/resources/awscc_panorama_application_instance/import.sh" }, { "resource": "awscc_panorama_package", "identifier": "PackageId", - "path": "../../examples/resources/awscc_panorama_package/import.sh" + "path": "./examples/resources/awscc_panorama_package/import.sh" }, { "resource": "awscc_panorama_package_version", "identifier": "PackageId,PackageVersion,PatchVersion", - "path": "../../examples/resources/awscc_panorama_package_version/import.sh" + "path": "./examples/resources/awscc_panorama_package_version/import.sh" }, { "resource": "awscc_paymentcryptography_alias", "identifier": "AliasName", - "path": "../../examples/resources/awscc_paymentcryptography_alias/import.sh" + "path": "./examples/resources/awscc_paymentcryptography_alias/import.sh" }, { "resource": "awscc_paymentcryptography_key", "identifier": "KeyIdentifier", - "path": "../../examples/resources/awscc_paymentcryptography_key/import.sh" + "path": "./examples/resources/awscc_paymentcryptography_key/import.sh" }, { "resource": "awscc_personalize_dataset", "identifier": "DatasetArn", - "path": "../../examples/resources/awscc_personalize_dataset/import.sh" + "path": "./examples/resources/awscc_personalize_dataset/import.sh" }, { "resource": "awscc_personalize_dataset_group", "identifier": "DatasetGroupArn", - "path": "../../examples/resources/awscc_personalize_dataset_group/import.sh" + "path": "./examples/resources/awscc_personalize_dataset_group/import.sh" }, { "resource": "awscc_personalize_schema", "identifier": "SchemaArn", - "path": "../../examples/resources/awscc_personalize_schema/import.sh" + "path": "./examples/resources/awscc_personalize_schema/import.sh" }, { "resource": "awscc_personalize_solution", "identifier": "SolutionArn", - "path": "../../examples/resources/awscc_personalize_solution/import.sh" + "path": "./examples/resources/awscc_personalize_solution/import.sh" }, { "resource": "awscc_pinpoint_in_app_template", "identifier": "TemplateName", - "path": "../../examples/resources/awscc_pinpoint_in_app_template/import.sh" + "path": "./examples/resources/awscc_pinpoint_in_app_template/import.sh" }, { "resource": "awscc_pipes_pipe", "identifier": "Name", - "path": "../../examples/resources/awscc_pipes_pipe/import.sh" + "path": "./examples/resources/awscc_pipes_pipe/import.sh" }, { "resource": "awscc_proton_environment_account_connection", "identifier": "Arn", - "path": "../../examples/resources/awscc_proton_environment_account_connection/import.sh" + "path": "./examples/resources/awscc_proton_environment_account_connection/import.sh" }, { "resource": "awscc_proton_environment_template", "identifier": "Arn", - "path": "../../examples/resources/awscc_proton_environment_template/import.sh" + "path": "./examples/resources/awscc_proton_environment_template/import.sh" }, { "resource": "awscc_proton_service_template", "identifier": "Arn", - "path": "../../examples/resources/awscc_proton_service_template/import.sh" + "path": "./examples/resources/awscc_proton_service_template/import.sh" }, { "resource": "awscc_qbusiness_application", "identifier": "ApplicationId", - "path": "../../examples/resources/awscc_qbusiness_application/import.sh" + "path": "./examples/resources/awscc_qbusiness_application/import.sh" }, { "resource": "awscc_qbusiness_data_source", "identifier": "ApplicationId,DataSourceId,IndexId", - "path": "../../examples/resources/awscc_qbusiness_data_source/import.sh" + "path": "./examples/resources/awscc_qbusiness_data_source/import.sh" }, { "resource": "awscc_qbusiness_index", "identifier": "ApplicationId,IndexId", - "path": "../../examples/resources/awscc_qbusiness_index/import.sh" + "path": "./examples/resources/awscc_qbusiness_index/import.sh" }, { "resource": "awscc_qbusiness_plugin", "identifier": "ApplicationId,PluginId", - "path": "../../examples/resources/awscc_qbusiness_plugin/import.sh" + "path": "./examples/resources/awscc_qbusiness_plugin/import.sh" }, { "resource": "awscc_qbusiness_retriever", "identifier": "ApplicationId,RetrieverId", - "path": "../../examples/resources/awscc_qbusiness_retriever/import.sh" + "path": "./examples/resources/awscc_qbusiness_retriever/import.sh" }, { "resource": "awscc_qbusiness_web_experience", "identifier": "ApplicationId,WebExperienceId", - "path": "../../examples/resources/awscc_qbusiness_web_experience/import.sh" + "path": "./examples/resources/awscc_qbusiness_web_experience/import.sh" }, { "resource": "awscc_qldb_stream", "identifier": "LedgerName,Id", - "path": "../../examples/resources/awscc_qldb_stream/import.sh" + "path": "./examples/resources/awscc_qldb_stream/import.sh" }, { "resource": "awscc_quicksight_analysis", "identifier": "AnalysisId,AwsAccountId", - "path": "../../examples/resources/awscc_quicksight_analysis/import.sh" + "path": "./examples/resources/awscc_quicksight_analysis/import.sh" }, { "resource": "awscc_quicksight_dashboard", "identifier": "AwsAccountId,DashboardId", - "path": "../../examples/resources/awscc_quicksight_dashboard/import.sh" + "path": "./examples/resources/awscc_quicksight_dashboard/import.sh" }, { "resource": "awscc_quicksight_data_set", "identifier": "AwsAccountId,DataSetId", - "path": "../../examples/resources/awscc_quicksight_data_set/import.sh" + "path": "./examples/resources/awscc_quicksight_data_set/import.sh" }, { "resource": "awscc_quicksight_data_source", "identifier": "AwsAccountId,DataSourceId", - "path": "../../examples/resources/awscc_quicksight_data_source/import.sh" + "path": "./examples/resources/awscc_quicksight_data_source/import.sh" }, { "resource": "awscc_quicksight_refresh_schedule", "identifier": "AwsAccountId,DataSetId,Schedule/ScheduleId", - "path": "../../examples/resources/awscc_quicksight_refresh_schedule/import.sh" + "path": "./examples/resources/awscc_quicksight_refresh_schedule/import.sh" }, { "resource": "awscc_quicksight_template", "identifier": "AwsAccountId,TemplateId", - "path": "../../examples/resources/awscc_quicksight_template/import.sh" + "path": "./examples/resources/awscc_quicksight_template/import.sh" }, { "resource": "awscc_quicksight_theme", "identifier": "ThemeId,AwsAccountId", - "path": "../../examples/resources/awscc_quicksight_theme/import.sh" + "path": "./examples/resources/awscc_quicksight_theme/import.sh" }, { "resource": "awscc_quicksight_topic", "identifier": "AwsAccountId,TopicId", - "path": "../../examples/resources/awscc_quicksight_topic/import.sh" + "path": "./examples/resources/awscc_quicksight_topic/import.sh" }, { "resource": "awscc_quicksight_vpc_connection", "identifier": "AwsAccountId,VPCConnectionId", - "path": "../../examples/resources/awscc_quicksight_vpc_connection/import.sh" + "path": "./examples/resources/awscc_quicksight_vpc_connection/import.sh" }, { "resource": "awscc_ram_permission", "identifier": "Arn", - "path": "../../examples/resources/awscc_ram_permission/import.sh" + "path": "./examples/resources/awscc_ram_permission/import.sh" }, { "resource": "awscc_rds_custom_db_engine_version", "identifier": "Engine,EngineVersion", - "path": "../../examples/resources/awscc_rds_custom_db_engine_version/import.sh" + "path": "./examples/resources/awscc_rds_custom_db_engine_version/import.sh" }, { "resource": "awscc_rds_db_cluster", "identifier": "DBClusterIdentifier", - "path": "../../examples/resources/awscc_rds_db_cluster/import.sh" + "path": "./examples/resources/awscc_rds_db_cluster/import.sh" }, { "resource": "awscc_rds_db_cluster_parameter_group", "identifier": "DBClusterParameterGroupName", - "path": "../../examples/resources/awscc_rds_db_cluster_parameter_group/import.sh" + "path": "./examples/resources/awscc_rds_db_cluster_parameter_group/import.sh" }, { "resource": "awscc_rds_db_instance", "identifier": "DBInstanceIdentifier", - "path": "../../examples/resources/awscc_rds_db_instance/import.sh" + "path": "./examples/resources/awscc_rds_db_instance/import.sh" }, { "resource": "awscc_rds_db_parameter_group", "identifier": "DBParameterGroupName", - "path": "../../examples/resources/awscc_rds_db_parameter_group/import.sh" + "path": "./examples/resources/awscc_rds_db_parameter_group/import.sh" }, { "resource": "awscc_rds_db_proxy", "identifier": "DBProxyName", - "path": "../../examples/resources/awscc_rds_db_proxy/import.sh" + "path": "./examples/resources/awscc_rds_db_proxy/import.sh" }, { "resource": "awscc_rds_db_proxy_endpoint", "identifier": "DBProxyEndpointName", - "path": "../../examples/resources/awscc_rds_db_proxy_endpoint/import.sh" + "path": "./examples/resources/awscc_rds_db_proxy_endpoint/import.sh" }, { "resource": "awscc_rds_db_proxy_target_group", "identifier": "TargetGroupArn", - "path": "../../examples/resources/awscc_rds_db_proxy_target_group/import.sh" + "path": "./examples/resources/awscc_rds_db_proxy_target_group/import.sh" }, { "resource": "awscc_rds_db_subnet_group", "identifier": "DBSubnetGroupName", - "path": "../../examples/resources/awscc_rds_db_subnet_group/import.sh" + "path": "./examples/resources/awscc_rds_db_subnet_group/import.sh" }, { "resource": "awscc_rds_event_subscription", "identifier": "SubscriptionName", - "path": "../../examples/resources/awscc_rds_event_subscription/import.sh" + "path": "./examples/resources/awscc_rds_event_subscription/import.sh" }, { "resource": "awscc_rds_global_cluster", "identifier": "GlobalClusterIdentifier", - "path": "../../examples/resources/awscc_rds_global_cluster/import.sh" + "path": "./examples/resources/awscc_rds_global_cluster/import.sh" }, { "resource": "awscc_rds_integration", "identifier": "IntegrationArn", - "path": "../../examples/resources/awscc_rds_integration/import.sh" + "path": "./examples/resources/awscc_rds_integration/import.sh" }, { "resource": "awscc_rds_option_group", "identifier": "OptionGroupName", - "path": "../../examples/resources/awscc_rds_option_group/import.sh" + "path": "./examples/resources/awscc_rds_option_group/import.sh" }, { "resource": "awscc_rum_app_monitor", "identifier": "Name", - "path": "../../examples/resources/awscc_rum_app_monitor/import.sh" + "path": "./examples/resources/awscc_rum_app_monitor/import.sh" }, { "resource": "awscc_redshift_cluster", "identifier": "ClusterIdentifier", - "path": "../../examples/resources/awscc_redshift_cluster/import.sh" + "path": "./examples/resources/awscc_redshift_cluster/import.sh" }, { "resource": "awscc_redshift_cluster_parameter_group", "identifier": "ParameterGroupName", - "path": "../../examples/resources/awscc_redshift_cluster_parameter_group/import.sh" + "path": "./examples/resources/awscc_redshift_cluster_parameter_group/import.sh" }, { "resource": "awscc_redshift_cluster_subnet_group", "identifier": "ClusterSubnetGroupName", - "path": "../../examples/resources/awscc_redshift_cluster_subnet_group/import.sh" + "path": "./examples/resources/awscc_redshift_cluster_subnet_group/import.sh" }, { "resource": "awscc_redshift_endpoint_access", "identifier": "EndpointName", - "path": "../../examples/resources/awscc_redshift_endpoint_access/import.sh" + "path": "./examples/resources/awscc_redshift_endpoint_access/import.sh" }, { "resource": "awscc_redshift_endpoint_authorization", "identifier": "ClusterIdentifier,Account", - "path": "../../examples/resources/awscc_redshift_endpoint_authorization/import.sh" + "path": "./examples/resources/awscc_redshift_endpoint_authorization/import.sh" }, { "resource": "awscc_redshift_event_subscription", "identifier": "SubscriptionName", - "path": "../../examples/resources/awscc_redshift_event_subscription/import.sh" + "path": "./examples/resources/awscc_redshift_event_subscription/import.sh" }, { "resource": "awscc_redshift_scheduled_action", "identifier": "ScheduledActionName", - "path": "../../examples/resources/awscc_redshift_scheduled_action/import.sh" + "path": "./examples/resources/awscc_redshift_scheduled_action/import.sh" }, { "resource": "awscc_redshiftserverless_namespace", "identifier": "NamespaceName", - "path": "../../examples/resources/awscc_redshiftserverless_namespace/import.sh" + "path": "./examples/resources/awscc_redshiftserverless_namespace/import.sh" }, { "resource": "awscc_redshiftserverless_workgroup", "identifier": "WorkgroupName", - "path": "../../examples/resources/awscc_redshiftserverless_workgroup/import.sh" + "path": "./examples/resources/awscc_redshiftserverless_workgroup/import.sh" }, { "resource": "awscc_refactorspaces_application", "identifier": "EnvironmentIdentifier,ApplicationIdentifier", - "path": "../../examples/resources/awscc_refactorspaces_application/import.sh" + "path": "./examples/resources/awscc_refactorspaces_application/import.sh" }, { "resource": "awscc_refactorspaces_environment", "identifier": "EnvironmentIdentifier", - "path": "../../examples/resources/awscc_refactorspaces_environment/import.sh" + "path": "./examples/resources/awscc_refactorspaces_environment/import.sh" }, { "resource": "awscc_refactorspaces_route", "identifier": "EnvironmentIdentifier,ApplicationIdentifier,RouteIdentifier", - "path": "../../examples/resources/awscc_refactorspaces_route/import.sh" + "path": "./examples/resources/awscc_refactorspaces_route/import.sh" }, { "resource": "awscc_refactorspaces_service", "identifier": "EnvironmentIdentifier,ApplicationIdentifier,ServiceIdentifier", - "path": "../../examples/resources/awscc_refactorspaces_service/import.sh" + "path": "./examples/resources/awscc_refactorspaces_service/import.sh" }, { "resource": "awscc_rekognition_collection", "identifier": "CollectionId", - "path": "../../examples/resources/awscc_rekognition_collection/import.sh" + "path": "./examples/resources/awscc_rekognition_collection/import.sh" }, { "resource": "awscc_rekognition_project", "identifier": "ProjectName", - "path": "../../examples/resources/awscc_rekognition_project/import.sh" + "path": "./examples/resources/awscc_rekognition_project/import.sh" }, { "resource": "awscc_resiliencehub_app", "identifier": "AppArn", - "path": "../../examples/resources/awscc_resiliencehub_app/import.sh" + "path": "./examples/resources/awscc_resiliencehub_app/import.sh" }, { "resource": "awscc_resiliencehub_resiliency_policy", "identifier": "PolicyArn", - "path": "../../examples/resources/awscc_resiliencehub_resiliency_policy/import.sh" + "path": "./examples/resources/awscc_resiliencehub_resiliency_policy/import.sh" }, { "resource": "awscc_resourceexplorer2_default_view_association", "identifier": "AssociatedAwsPrincipal", - "path": "../../examples/resources/awscc_resourceexplorer2_default_view_association/import.sh" + "path": "./examples/resources/awscc_resourceexplorer2_default_view_association/import.sh" }, { "resource": "awscc_resourceexplorer2_index", "identifier": "Arn", - "path": "../../examples/resources/awscc_resourceexplorer2_index/import.sh" + "path": "./examples/resources/awscc_resourceexplorer2_index/import.sh" }, { "resource": "awscc_resourceexplorer2_view", "identifier": "ViewArn", - "path": "../../examples/resources/awscc_resourceexplorer2_view/import.sh" + "path": "./examples/resources/awscc_resourceexplorer2_view/import.sh" }, { "resource": "awscc_resourcegroups_group", "identifier": "Name", - "path": "../../examples/resources/awscc_resourcegroups_group/import.sh" + "path": "./examples/resources/awscc_resourcegroups_group/import.sh" }, { "resource": "awscc_robomaker_fleet", "identifier": "Arn", - "path": "../../examples/resources/awscc_robomaker_fleet/import.sh" + "path": "./examples/resources/awscc_robomaker_fleet/import.sh" }, { "resource": "awscc_robomaker_robot", "identifier": "Arn", - "path": "../../examples/resources/awscc_robomaker_robot/import.sh" + "path": "./examples/resources/awscc_robomaker_robot/import.sh" }, { "resource": "awscc_robomaker_robot_application", "identifier": "Arn", - "path": "../../examples/resources/awscc_robomaker_robot_application/import.sh" + "path": "./examples/resources/awscc_robomaker_robot_application/import.sh" }, { "resource": "awscc_robomaker_robot_application_version", "identifier": "Arn", - "path": "../../examples/resources/awscc_robomaker_robot_application_version/import.sh" + "path": "./examples/resources/awscc_robomaker_robot_application_version/import.sh" }, { "resource": "awscc_robomaker_simulation_application", "identifier": "Arn", - "path": "../../examples/resources/awscc_robomaker_simulation_application/import.sh" + "path": "./examples/resources/awscc_robomaker_simulation_application/import.sh" }, { "resource": "awscc_robomaker_simulation_application_version", "identifier": "Arn", - "path": "../../examples/resources/awscc_robomaker_simulation_application_version/import.sh" + "path": "./examples/resources/awscc_robomaker_simulation_application_version/import.sh" }, { "resource": "awscc_rolesanywhere_crl", "identifier": "CrlId", - "path": "../../examples/resources/awscc_rolesanywhere_crl/import.sh" + "path": "./examples/resources/awscc_rolesanywhere_crl/import.sh" }, { "resource": "awscc_rolesanywhere_profile", "identifier": "ProfileId", - "path": "../../examples/resources/awscc_rolesanywhere_profile/import.sh" + "path": "./examples/resources/awscc_rolesanywhere_profile/import.sh" }, { "resource": "awscc_rolesanywhere_trust_anchor", "identifier": "TrustAnchorId", - "path": "../../examples/resources/awscc_rolesanywhere_trust_anchor/import.sh" + "path": "./examples/resources/awscc_rolesanywhere_trust_anchor/import.sh" }, { "resource": "awscc_route53_cidr_collection", "identifier": "Id", - "path": "../../examples/resources/awscc_route53_cidr_collection/import.sh" + "path": "./examples/resources/awscc_route53_cidr_collection/import.sh" }, { "resource": "awscc_route53_dnssec", "identifier": "HostedZoneId", - "path": "../../examples/resources/awscc_route53_dnssec/import.sh" + "path": "./examples/resources/awscc_route53_dnssec/import.sh" }, { "resource": "awscc_route53_health_check", "identifier": "HealthCheckId", - "path": "../../examples/resources/awscc_route53_health_check/import.sh" + "path": "./examples/resources/awscc_route53_health_check/import.sh" }, { "resource": "awscc_route53_hosted_zone", "identifier": "Id", - "path": "../../examples/resources/awscc_route53_hosted_zone/import.sh" + "path": "./examples/resources/awscc_route53_hosted_zone/import.sh" }, { "resource": "awscc_route53_key_signing_key", "identifier": "HostedZoneId,Name", - "path": "../../examples/resources/awscc_route53_key_signing_key/import.sh" + "path": "./examples/resources/awscc_route53_key_signing_key/import.sh" }, { "resource": "awscc_route53profiles_profile", "identifier": "Id", - "path": "../../examples/resources/awscc_route53profiles_profile/import.sh" + "path": "./examples/resources/awscc_route53profiles_profile/import.sh" }, { "resource": "awscc_route53profiles_profile_association", "identifier": "Id", - "path": "../../examples/resources/awscc_route53profiles_profile_association/import.sh" + "path": "./examples/resources/awscc_route53profiles_profile_association/import.sh" }, { "resource": "awscc_route53profiles_profile_resource_association", "identifier": "Id", - "path": "../../examples/resources/awscc_route53profiles_profile_resource_association/import.sh" + "path": "./examples/resources/awscc_route53profiles_profile_resource_association/import.sh" }, { "resource": "awscc_route53recoverycontrol_cluster", "identifier": "ClusterArn", - "path": "../../examples/resources/awscc_route53recoverycontrol_cluster/import.sh" + "path": "./examples/resources/awscc_route53recoverycontrol_cluster/import.sh" }, { "resource": "awscc_route53recoverycontrol_control_panel", "identifier": "ControlPanelArn", - "path": "../../examples/resources/awscc_route53recoverycontrol_control_panel/import.sh" + "path": "./examples/resources/awscc_route53recoverycontrol_control_panel/import.sh" }, { "resource": "awscc_route53recoverycontrol_routing_control", "identifier": "RoutingControlArn", - "path": "../../examples/resources/awscc_route53recoverycontrol_routing_control/import.sh" + "path": "./examples/resources/awscc_route53recoverycontrol_routing_control/import.sh" }, { "resource": "awscc_route53recoverycontrol_safety_rule", "identifier": "SafetyRuleArn", - "path": "../../examples/resources/awscc_route53recoverycontrol_safety_rule/import.sh" + "path": "./examples/resources/awscc_route53recoverycontrol_safety_rule/import.sh" }, { "resource": "awscc_route53recoveryreadiness_cell", "identifier": "CellName", - "path": "../../examples/resources/awscc_route53recoveryreadiness_cell/import.sh" + "path": "./examples/resources/awscc_route53recoveryreadiness_cell/import.sh" }, { "resource": "awscc_route53recoveryreadiness_readiness_check", "identifier": "ReadinessCheckName", - "path": "../../examples/resources/awscc_route53recoveryreadiness_readiness_check/import.sh" + "path": "./examples/resources/awscc_route53recoveryreadiness_readiness_check/import.sh" }, { "resource": "awscc_route53recoveryreadiness_recovery_group", "identifier": "RecoveryGroupName", - "path": "../../examples/resources/awscc_route53recoveryreadiness_recovery_group/import.sh" + "path": "./examples/resources/awscc_route53recoveryreadiness_recovery_group/import.sh" }, { "resource": "awscc_route53recoveryreadiness_resource_set", "identifier": "ResourceSetName", - "path": "../../examples/resources/awscc_route53recoveryreadiness_resource_set/import.sh" + "path": "./examples/resources/awscc_route53recoveryreadiness_resource_set/import.sh" }, { "resource": "awscc_route53resolver_firewall_domain_list", "identifier": "Id", - "path": "../../examples/resources/awscc_route53resolver_firewall_domain_list/import.sh" + "path": "./examples/resources/awscc_route53resolver_firewall_domain_list/import.sh" }, { "resource": "awscc_route53resolver_firewall_rule_group", "identifier": "Id", - "path": "../../examples/resources/awscc_route53resolver_firewall_rule_group/import.sh" + "path": "./examples/resources/awscc_route53resolver_firewall_rule_group/import.sh" }, { "resource": "awscc_route53resolver_firewall_rule_group_association", "identifier": "Id", - "path": "../../examples/resources/awscc_route53resolver_firewall_rule_group_association/import.sh" + "path": "./examples/resources/awscc_route53resolver_firewall_rule_group_association/import.sh" }, { "resource": "awscc_route53resolver_outpost_resolver", "identifier": "Id", - "path": "../../examples/resources/awscc_route53resolver_outpost_resolver/import.sh" + "path": "./examples/resources/awscc_route53resolver_outpost_resolver/import.sh" }, { "resource": "awscc_route53resolver_resolver_config", "identifier": "ResourceId", - "path": "../../examples/resources/awscc_route53resolver_resolver_config/import.sh" + "path": "./examples/resources/awscc_route53resolver_resolver_config/import.sh" }, { "resource": "awscc_route53resolver_resolver_dnssec_config", "identifier": "Id", - "path": "../../examples/resources/awscc_route53resolver_resolver_dnssec_config/import.sh" + "path": "./examples/resources/awscc_route53resolver_resolver_dnssec_config/import.sh" }, { "resource": "awscc_route53resolver_resolver_query_logging_config", "identifier": "Id", - "path": "../../examples/resources/awscc_route53resolver_resolver_query_logging_config/import.sh" + "path": "./examples/resources/awscc_route53resolver_resolver_query_logging_config/import.sh" }, { "resource": "awscc_route53resolver_resolver_query_logging_config_association", "identifier": "Id", - "path": "../../examples/resources/awscc_route53resolver_resolver_query_logging_config_association/import.sh" + "path": "./examples/resources/awscc_route53resolver_resolver_query_logging_config_association/import.sh" }, { "resource": "awscc_route53resolver_resolver_rule", "identifier": "ResolverRuleId", - "path": "../../examples/resources/awscc_route53resolver_resolver_rule/import.sh" + "path": "./examples/resources/awscc_route53resolver_resolver_rule/import.sh" }, { "resource": "awscc_route53resolver_resolver_rule_association", "identifier": "ResolverRuleAssociationId", - "path": "../../examples/resources/awscc_route53resolver_resolver_rule_association/import.sh" + "path": "./examples/resources/awscc_route53resolver_resolver_rule_association/import.sh" }, { "resource": "awscc_s3_access_grant", "identifier": "AccessGrantId", - "path": "../../examples/resources/awscc_s3_access_grant/import.sh" + "path": "./examples/resources/awscc_s3_access_grant/import.sh" }, { "resource": "awscc_s3_access_grants_instance", "identifier": "AccessGrantsInstanceArn", - "path": "../../examples/resources/awscc_s3_access_grants_instance/import.sh" + "path": "./examples/resources/awscc_s3_access_grants_instance/import.sh" }, { "resource": "awscc_s3_access_grants_location", "identifier": "AccessGrantsLocationId", - "path": "../../examples/resources/awscc_s3_access_grants_location/import.sh" + "path": "./examples/resources/awscc_s3_access_grants_location/import.sh" }, { "resource": "awscc_s3_access_point", "identifier": "Name", - "path": "../../examples/resources/awscc_s3_access_point/import.sh" + "path": "./examples/resources/awscc_s3_access_point/import.sh" }, { "resource": "awscc_s3_bucket", "identifier": "BucketName", - "path": "../../examples/resources/awscc_s3_bucket/import.sh" + "path": "./examples/resources/awscc_s3_bucket/import.sh" }, { "resource": "awscc_s3_bucket_policy", "identifier": "Bucket", - "path": "../../examples/resources/awscc_s3_bucket_policy/import.sh" + "path": "./examples/resources/awscc_s3_bucket_policy/import.sh" }, { "resource": "awscc_s3_multi_region_access_point", "identifier": "Name", - "path": "../../examples/resources/awscc_s3_multi_region_access_point/import.sh" + "path": "./examples/resources/awscc_s3_multi_region_access_point/import.sh" }, { "resource": "awscc_s3_multi_region_access_point_policy", "identifier": "MrapName", - "path": "../../examples/resources/awscc_s3_multi_region_access_point_policy/import.sh" + "path": "./examples/resources/awscc_s3_multi_region_access_point_policy/import.sh" }, { "resource": "awscc_s3_storage_lens", "identifier": "StorageLensConfiguration/Id", - "path": "../../examples/resources/awscc_s3_storage_lens/import.sh" + "path": "./examples/resources/awscc_s3_storage_lens/import.sh" }, { "resource": "awscc_s3_storage_lens_group", "identifier": "Name", - "path": "../../examples/resources/awscc_s3_storage_lens_group/import.sh" + "path": "./examples/resources/awscc_s3_storage_lens_group/import.sh" }, { "resource": "awscc_s3express_bucket_policy", "identifier": "Bucket", - "path": "../../examples/resources/awscc_s3express_bucket_policy/import.sh" + "path": "./examples/resources/awscc_s3express_bucket_policy/import.sh" }, { "resource": "awscc_s3express_directory_bucket", "identifier": "BucketName", - "path": "../../examples/resources/awscc_s3express_directory_bucket/import.sh" + "path": "./examples/resources/awscc_s3express_directory_bucket/import.sh" }, { "resource": "awscc_s3objectlambda_access_point", "identifier": "Name", - "path": "../../examples/resources/awscc_s3objectlambda_access_point/import.sh" + "path": "./examples/resources/awscc_s3objectlambda_access_point/import.sh" }, { "resource": "awscc_s3objectlambda_access_point_policy", "identifier": "ObjectLambdaAccessPoint", - "path": "../../examples/resources/awscc_s3objectlambda_access_point_policy/import.sh" + "path": "./examples/resources/awscc_s3objectlambda_access_point_policy/import.sh" }, { "resource": "awscc_s3outposts_access_point", "identifier": "Arn", - "path": "../../examples/resources/awscc_s3outposts_access_point/import.sh" + "path": "./examples/resources/awscc_s3outposts_access_point/import.sh" }, { "resource": "awscc_s3outposts_bucket", "identifier": "Arn", - "path": "../../examples/resources/awscc_s3outposts_bucket/import.sh" + "path": "./examples/resources/awscc_s3outposts_bucket/import.sh" }, { "resource": "awscc_s3outposts_bucket_policy", "identifier": "Bucket", - "path": "../../examples/resources/awscc_s3outposts_bucket_policy/import.sh" + "path": "./examples/resources/awscc_s3outposts_bucket_policy/import.sh" }, { "resource": "awscc_s3outposts_endpoint", "identifier": "Arn", - "path": "../../examples/resources/awscc_s3outposts_endpoint/import.sh" + "path": "./examples/resources/awscc_s3outposts_endpoint/import.sh" }, { "resource": "awscc_ses_configuration_set", "identifier": "Name", - "path": "../../examples/resources/awscc_ses_configuration_set/import.sh" + "path": "./examples/resources/awscc_ses_configuration_set/import.sh" }, { "resource": "awscc_ses_configuration_set_event_destination", "identifier": "Id", - "path": "../../examples/resources/awscc_ses_configuration_set_event_destination/import.sh" + "path": "./examples/resources/awscc_ses_configuration_set_event_destination/import.sh" }, { "resource": "awscc_ses_contact_list", "identifier": "ContactListName", - "path": "../../examples/resources/awscc_ses_contact_list/import.sh" + "path": "./examples/resources/awscc_ses_contact_list/import.sh" }, { "resource": "awscc_ses_dedicated_ip_pool", "identifier": "PoolName", - "path": "../../examples/resources/awscc_ses_dedicated_ip_pool/import.sh" + "path": "./examples/resources/awscc_ses_dedicated_ip_pool/import.sh" }, { "resource": "awscc_ses_email_identity", "identifier": "EmailIdentity", - "path": "../../examples/resources/awscc_ses_email_identity/import.sh" + "path": "./examples/resources/awscc_ses_email_identity/import.sh" }, { "resource": "awscc_ses_mail_manager_addon_instance", "identifier": "AddonInstanceId", - "path": "../../examples/resources/awscc_ses_mail_manager_addon_instance/import.sh" + "path": "./examples/resources/awscc_ses_mail_manager_addon_instance/import.sh" }, { "resource": "awscc_ses_mail_manager_addon_subscription", "identifier": "AddonSubscriptionId", - "path": "../../examples/resources/awscc_ses_mail_manager_addon_subscription/import.sh" + "path": "./examples/resources/awscc_ses_mail_manager_addon_subscription/import.sh" }, { "resource": "awscc_ses_mail_manager_archive", "identifier": "ArchiveId", - "path": "../../examples/resources/awscc_ses_mail_manager_archive/import.sh" + "path": "./examples/resources/awscc_ses_mail_manager_archive/import.sh" }, { "resource": "awscc_ses_mail_manager_ingress_point", "identifier": "IngressPointId", - "path": "../../examples/resources/awscc_ses_mail_manager_ingress_point/import.sh" + "path": "./examples/resources/awscc_ses_mail_manager_ingress_point/import.sh" }, { "resource": "awscc_ses_mail_manager_relay", "identifier": "RelayId", - "path": "../../examples/resources/awscc_ses_mail_manager_relay/import.sh" + "path": "./examples/resources/awscc_ses_mail_manager_relay/import.sh" }, { "resource": "awscc_ses_mail_manager_rule_set", "identifier": "RuleSetId", - "path": "../../examples/resources/awscc_ses_mail_manager_rule_set/import.sh" + "path": "./examples/resources/awscc_ses_mail_manager_rule_set/import.sh" }, { "resource": "awscc_ses_mail_manager_traffic_policy", "identifier": "TrafficPolicyId", - "path": "../../examples/resources/awscc_ses_mail_manager_traffic_policy/import.sh" + "path": "./examples/resources/awscc_ses_mail_manager_traffic_policy/import.sh" }, { "resource": "awscc_ses_template", "identifier": "Id", - "path": "../../examples/resources/awscc_ses_template/import.sh" + "path": "./examples/resources/awscc_ses_template/import.sh" }, { "resource": "awscc_ses_vdm_attributes", "identifier": "VdmAttributesResourceId", - "path": "../../examples/resources/awscc_ses_vdm_attributes/import.sh" + "path": "./examples/resources/awscc_ses_vdm_attributes/import.sh" }, { "resource": "awscc_sns_topic", "identifier": "TopicArn", - "path": "../../examples/resources/awscc_sns_topic/import.sh" + "path": "./examples/resources/awscc_sns_topic/import.sh" }, { "resource": "awscc_sns_topic_inline_policy", "identifier": "TopicArn", - "path": "../../examples/resources/awscc_sns_topic_inline_policy/import.sh" + "path": "./examples/resources/awscc_sns_topic_inline_policy/import.sh" }, { "resource": "awscc_sqs_queue", "identifier": "QueueUrl", - "path": "../../examples/resources/awscc_sqs_queue/import.sh" + "path": "./examples/resources/awscc_sqs_queue/import.sh" }, { "resource": "awscc_sqs_queue_inline_policy", "identifier": "Queue", - "path": "../../examples/resources/awscc_sqs_queue_inline_policy/import.sh" + "path": "./examples/resources/awscc_sqs_queue_inline_policy/import.sh" }, { "resource": "awscc_ssm_association", "identifier": "AssociationId", - "path": "../../examples/resources/awscc_ssm_association/import.sh" + "path": "./examples/resources/awscc_ssm_association/import.sh" }, { "resource": "awscc_ssm_document", "identifier": "Name", - "path": "../../examples/resources/awscc_ssm_document/import.sh" + "path": "./examples/resources/awscc_ssm_document/import.sh" }, { "resource": "awscc_ssm_parameter", "identifier": "Name", - "path": "../../examples/resources/awscc_ssm_parameter/import.sh" + "path": "./examples/resources/awscc_ssm_parameter/import.sh" }, { "resource": "awscc_ssm_patch_baseline", "identifier": "Id", - "path": "../../examples/resources/awscc_ssm_patch_baseline/import.sh" + "path": "./examples/resources/awscc_ssm_patch_baseline/import.sh" }, { "resource": "awscc_ssm_resource_data_sync", "identifier": "SyncName", - "path": "../../examples/resources/awscc_ssm_resource_data_sync/import.sh" + "path": "./examples/resources/awscc_ssm_resource_data_sync/import.sh" }, { "resource": "awscc_ssm_resource_policy", "identifier": "PolicyId,ResourceArn", - "path": "../../examples/resources/awscc_ssm_resource_policy/import.sh" + "path": "./examples/resources/awscc_ssm_resource_policy/import.sh" }, { "resource": "awscc_ssmcontacts_contact", "identifier": "Arn", - "path": "../../examples/resources/awscc_ssmcontacts_contact/import.sh" + "path": "./examples/resources/awscc_ssmcontacts_contact/import.sh" }, { "resource": "awscc_ssmcontacts_contact_channel", "identifier": "Arn", - "path": "../../examples/resources/awscc_ssmcontacts_contact_channel/import.sh" + "path": "./examples/resources/awscc_ssmcontacts_contact_channel/import.sh" }, { "resource": "awscc_ssmcontacts_plan", "identifier": "Arn", - "path": "../../examples/resources/awscc_ssmcontacts_plan/import.sh" + "path": "./examples/resources/awscc_ssmcontacts_plan/import.sh" }, { "resource": "awscc_ssmcontacts_rotation", "identifier": "Arn", - "path": "../../examples/resources/awscc_ssmcontacts_rotation/import.sh" + "path": "./examples/resources/awscc_ssmcontacts_rotation/import.sh" }, { "resource": "awscc_ssmincidents_replication_set", "identifier": "Arn", - "path": "../../examples/resources/awscc_ssmincidents_replication_set/import.sh" + "path": "./examples/resources/awscc_ssmincidents_replication_set/import.sh" }, { "resource": "awscc_ssmincidents_response_plan", "identifier": "Arn", - "path": "../../examples/resources/awscc_ssmincidents_response_plan/import.sh" + "path": "./examples/resources/awscc_ssmincidents_response_plan/import.sh" }, { "resource": "awscc_sso_application", "identifier": "ApplicationArn", - "path": "../../examples/resources/awscc_sso_application/import.sh" + "path": "./examples/resources/awscc_sso_application/import.sh" }, { "resource": "awscc_sso_application_assignment", "identifier": "ApplicationArn,PrincipalType,PrincipalId", - "path": "../../examples/resources/awscc_sso_application_assignment/import.sh" + "path": "./examples/resources/awscc_sso_application_assignment/import.sh" }, { "resource": "awscc_sso_assignment", "identifier": "InstanceArn,TargetId,TargetType,PermissionSetArn,PrincipalType,PrincipalId", - "path": "../../examples/resources/awscc_sso_assignment/import.sh" + "path": "./examples/resources/awscc_sso_assignment/import.sh" }, { "resource": "awscc_sso_instance", "identifier": "InstanceArn", - "path": "../../examples/resources/awscc_sso_instance/import.sh" + "path": "./examples/resources/awscc_sso_instance/import.sh" }, { "resource": "awscc_sso_instance_access_control_attribute_configuration", "identifier": "InstanceArn", - "path": "../../examples/resources/awscc_sso_instance_access_control_attribute_configuration/import.sh" + "path": "./examples/resources/awscc_sso_instance_access_control_attribute_configuration/import.sh" }, { "resource": "awscc_sso_permission_set", "identifier": "InstanceArn,PermissionSetArn", - "path": "../../examples/resources/awscc_sso_permission_set/import.sh" + "path": "./examples/resources/awscc_sso_permission_set/import.sh" }, { "resource": "awscc_sagemaker_app", "identifier": "AppName,AppType,DomainId,UserProfileName", - "path": "../../examples/resources/awscc_sagemaker_app/import.sh" + "path": "./examples/resources/awscc_sagemaker_app/import.sh" }, { "resource": "awscc_sagemaker_app_image_config", "identifier": "AppImageConfigName", - "path": "../../examples/resources/awscc_sagemaker_app_image_config/import.sh" + "path": "./examples/resources/awscc_sagemaker_app_image_config/import.sh" }, { "resource": "awscc_sagemaker_data_quality_job_definition", "identifier": "JobDefinitionArn", - "path": "../../examples/resources/awscc_sagemaker_data_quality_job_definition/import.sh" + "path": "./examples/resources/awscc_sagemaker_data_quality_job_definition/import.sh" }, { "resource": "awscc_sagemaker_device", "identifier": "Device/DeviceName", - "path": "../../examples/resources/awscc_sagemaker_device/import.sh" + "path": "./examples/resources/awscc_sagemaker_device/import.sh" }, { "resource": "awscc_sagemaker_device_fleet", "identifier": "DeviceFleetName", - "path": "../../examples/resources/awscc_sagemaker_device_fleet/import.sh" + "path": "./examples/resources/awscc_sagemaker_device_fleet/import.sh" }, { "resource": "awscc_sagemaker_domain", "identifier": "DomainId", - "path": "../../examples/resources/awscc_sagemaker_domain/import.sh" + "path": "./examples/resources/awscc_sagemaker_domain/import.sh" }, { "resource": "awscc_sagemaker_feature_group", "identifier": "FeatureGroupName", - "path": "../../examples/resources/awscc_sagemaker_feature_group/import.sh" + "path": "./examples/resources/awscc_sagemaker_feature_group/import.sh" }, { "resource": "awscc_sagemaker_image", "identifier": "ImageArn", - "path": "../../examples/resources/awscc_sagemaker_image/import.sh" + "path": "./examples/resources/awscc_sagemaker_image/import.sh" }, { "resource": "awscc_sagemaker_image_version", "identifier": "ImageVersionArn", - "path": "../../examples/resources/awscc_sagemaker_image_version/import.sh" + "path": "./examples/resources/awscc_sagemaker_image_version/import.sh" }, { "resource": "awscc_sagemaker_inference_component", "identifier": "InferenceComponentArn", - "path": "../../examples/resources/awscc_sagemaker_inference_component/import.sh" + "path": "./examples/resources/awscc_sagemaker_inference_component/import.sh" }, { "resource": "awscc_sagemaker_inference_experiment", "identifier": "Name", - "path": "../../examples/resources/awscc_sagemaker_inference_experiment/import.sh" + "path": "./examples/resources/awscc_sagemaker_inference_experiment/import.sh" }, { "resource": "awscc_sagemaker_mlflow_tracking_server", "identifier": "TrackingServerName", - "path": "../../examples/resources/awscc_sagemaker_mlflow_tracking_server/import.sh" + "path": "./examples/resources/awscc_sagemaker_mlflow_tracking_server/import.sh" }, { "resource": "awscc_sagemaker_model_bias_job_definition", "identifier": "JobDefinitionArn", - "path": "../../examples/resources/awscc_sagemaker_model_bias_job_definition/import.sh" + "path": "./examples/resources/awscc_sagemaker_model_bias_job_definition/import.sh" }, { "resource": "awscc_sagemaker_model_explainability_job_definition", "identifier": "JobDefinitionArn", - "path": "../../examples/resources/awscc_sagemaker_model_explainability_job_definition/import.sh" + "path": "./examples/resources/awscc_sagemaker_model_explainability_job_definition/import.sh" }, { "resource": "awscc_sagemaker_model_package", "identifier": "ModelPackageArn", - "path": "../../examples/resources/awscc_sagemaker_model_package/import.sh" + "path": "./examples/resources/awscc_sagemaker_model_package/import.sh" }, { "resource": "awscc_sagemaker_model_package_group", "identifier": "ModelPackageGroupArn", - "path": "../../examples/resources/awscc_sagemaker_model_package_group/import.sh" + "path": "./examples/resources/awscc_sagemaker_model_package_group/import.sh" }, { "resource": "awscc_sagemaker_model_quality_job_definition", "identifier": "JobDefinitionArn", - "path": "../../examples/resources/awscc_sagemaker_model_quality_job_definition/import.sh" + "path": "./examples/resources/awscc_sagemaker_model_quality_job_definition/import.sh" }, { "resource": "awscc_sagemaker_monitoring_schedule", "identifier": "MonitoringScheduleArn", - "path": "../../examples/resources/awscc_sagemaker_monitoring_schedule/import.sh" + "path": "./examples/resources/awscc_sagemaker_monitoring_schedule/import.sh" }, { "resource": "awscc_sagemaker_pipeline", "identifier": "PipelineName", - "path": "../../examples/resources/awscc_sagemaker_pipeline/import.sh" + "path": "./examples/resources/awscc_sagemaker_pipeline/import.sh" }, { "resource": "awscc_sagemaker_project", "identifier": "ProjectArn", - "path": "../../examples/resources/awscc_sagemaker_project/import.sh" + "path": "./examples/resources/awscc_sagemaker_project/import.sh" }, { "resource": "awscc_sagemaker_space", "identifier": "DomainId,SpaceName", - "path": "../../examples/resources/awscc_sagemaker_space/import.sh" + "path": "./examples/resources/awscc_sagemaker_space/import.sh" }, { "resource": "awscc_sagemaker_studio_lifecycle_config", "identifier": "StudioLifecycleConfigName", - "path": "../../examples/resources/awscc_sagemaker_studio_lifecycle_config/import.sh" + "path": "./examples/resources/awscc_sagemaker_studio_lifecycle_config/import.sh" }, { "resource": "awscc_sagemaker_user_profile", "identifier": "UserProfileName,DomainId", - "path": "../../examples/resources/awscc_sagemaker_user_profile/import.sh" + "path": "./examples/resources/awscc_sagemaker_user_profile/import.sh" }, { "resource": "awscc_scheduler_schedule_group", "identifier": "Name", - "path": "../../examples/resources/awscc_scheduler_schedule_group/import.sh" + "path": "./examples/resources/awscc_scheduler_schedule_group/import.sh" }, { "resource": "awscc_secretsmanager_resource_policy", "identifier": "Id", - "path": "../../examples/resources/awscc_secretsmanager_resource_policy/import.sh" + "path": "./examples/resources/awscc_secretsmanager_resource_policy/import.sh" }, { "resource": "awscc_secretsmanager_secret", "identifier": "Id", - "path": "../../examples/resources/awscc_secretsmanager_secret/import.sh" + "path": "./examples/resources/awscc_secretsmanager_secret/import.sh" }, { "resource": "awscc_securityhub_configuration_policy", "identifier": "Arn", - "path": "../../examples/resources/awscc_securityhub_configuration_policy/import.sh" + "path": "./examples/resources/awscc_securityhub_configuration_policy/import.sh" }, { "resource": "awscc_securityhub_delegated_admin", "identifier": "DelegatedAdminIdentifier", - "path": "../../examples/resources/awscc_securityhub_delegated_admin/import.sh" + "path": "./examples/resources/awscc_securityhub_delegated_admin/import.sh" }, { "resource": "awscc_securityhub_finding_aggregator", "identifier": "FindingAggregatorArn", - "path": "../../examples/resources/awscc_securityhub_finding_aggregator/import.sh" + "path": "./examples/resources/awscc_securityhub_finding_aggregator/import.sh" }, { "resource": "awscc_securityhub_hub", "identifier": "ARN", - "path": "../../examples/resources/awscc_securityhub_hub/import.sh" + "path": "./examples/resources/awscc_securityhub_hub/import.sh" }, { "resource": "awscc_securityhub_insight", "identifier": "InsightArn", - "path": "../../examples/resources/awscc_securityhub_insight/import.sh" + "path": "./examples/resources/awscc_securityhub_insight/import.sh" }, { "resource": "awscc_securityhub_organization_configuration", "identifier": "OrganizationConfigurationIdentifier", - "path": "../../examples/resources/awscc_securityhub_organization_configuration/import.sh" + "path": "./examples/resources/awscc_securityhub_organization_configuration/import.sh" }, { "resource": "awscc_securityhub_policy_association", "identifier": "AssociationIdentifier", - "path": "../../examples/resources/awscc_securityhub_policy_association/import.sh" + "path": "./examples/resources/awscc_securityhub_policy_association/import.sh" }, { "resource": "awscc_securityhub_product_subscription", "identifier": "ProductSubscriptionArn", - "path": "../../examples/resources/awscc_securityhub_product_subscription/import.sh" + "path": "./examples/resources/awscc_securityhub_product_subscription/import.sh" }, { "resource": "awscc_securityhub_security_control", "identifier": "SecurityControlId", - "path": "../../examples/resources/awscc_securityhub_security_control/import.sh" + "path": "./examples/resources/awscc_securityhub_security_control/import.sh" }, { "resource": "awscc_securityhub_standard", "identifier": "StandardsSubscriptionArn", - "path": "../../examples/resources/awscc_securityhub_standard/import.sh" + "path": "./examples/resources/awscc_securityhub_standard/import.sh" }, { "resource": "awscc_securitylake_aws_log_source", "identifier": "SourceName,SourceVersion", - "path": "../../examples/resources/awscc_securitylake_aws_log_source/import.sh" + "path": "./examples/resources/awscc_securitylake_aws_log_source/import.sh" }, { "resource": "awscc_securitylake_data_lake", "identifier": "Arn", - "path": "../../examples/resources/awscc_securitylake_data_lake/import.sh" + "path": "./examples/resources/awscc_securitylake_data_lake/import.sh" }, { "resource": "awscc_securitylake_subscriber_notification", "identifier": "SubscriberArn", - "path": "../../examples/resources/awscc_securitylake_subscriber_notification/import.sh" + "path": "./examples/resources/awscc_securitylake_subscriber_notification/import.sh" }, { "resource": "awscc_servicecatalog_cloudformation_provisioned_product", "identifier": "ProvisionedProductId", - "path": "../../examples/resources/awscc_servicecatalog_cloudformation_provisioned_product/import.sh" + "path": "./examples/resources/awscc_servicecatalog_cloudformation_provisioned_product/import.sh" }, { "resource": "awscc_servicecatalog_service_action", "identifier": "Id", - "path": "../../examples/resources/awscc_servicecatalog_service_action/import.sh" + "path": "./examples/resources/awscc_servicecatalog_service_action/import.sh" }, { "resource": "awscc_servicecatalog_service_action_association", "identifier": "ProductId,ProvisioningArtifactId,ServiceActionId", - "path": "../../examples/resources/awscc_servicecatalog_service_action_association/import.sh" + "path": "./examples/resources/awscc_servicecatalog_service_action_association/import.sh" }, { "resource": "awscc_servicecatalogappregistry_application", "identifier": "Id", - "path": "../../examples/resources/awscc_servicecatalogappregistry_application/import.sh" + "path": "./examples/resources/awscc_servicecatalogappregistry_application/import.sh" }, { "resource": "awscc_servicecatalogappregistry_attribute_group", "identifier": "Id", - "path": "../../examples/resources/awscc_servicecatalogappregistry_attribute_group/import.sh" + "path": "./examples/resources/awscc_servicecatalogappregistry_attribute_group/import.sh" }, { "resource": "awscc_servicecatalogappregistry_attribute_group_association", "identifier": "ApplicationArn,AttributeGroupArn", - "path": "../../examples/resources/awscc_servicecatalogappregistry_attribute_group_association/import.sh" + "path": "./examples/resources/awscc_servicecatalogappregistry_attribute_group_association/import.sh" }, { "resource": "awscc_servicecatalogappregistry_resource_association", "identifier": "ApplicationArn,ResourceArn,ResourceType", - "path": "../../examples/resources/awscc_servicecatalogappregistry_resource_association/import.sh" + "path": "./examples/resources/awscc_servicecatalogappregistry_resource_association/import.sh" }, { "resource": "awscc_shield_drt_access", "identifier": "AccountId", - "path": "../../examples/resources/awscc_shield_drt_access/import.sh" + "path": "./examples/resources/awscc_shield_drt_access/import.sh" }, { "resource": "awscc_shield_proactive_engagement", "identifier": "AccountId", - "path": "../../examples/resources/awscc_shield_proactive_engagement/import.sh" + "path": "./examples/resources/awscc_shield_proactive_engagement/import.sh" }, { "resource": "awscc_shield_protection", "identifier": "ProtectionArn", - "path": "../../examples/resources/awscc_shield_protection/import.sh" + "path": "./examples/resources/awscc_shield_protection/import.sh" }, { "resource": "awscc_shield_protection_group", "identifier": "ProtectionGroupArn", - "path": "../../examples/resources/awscc_shield_protection_group/import.sh" + "path": "./examples/resources/awscc_shield_protection_group/import.sh" }, { "resource": "awscc_signer_profile_permission", "identifier": "StatementId,ProfileName", - "path": "../../examples/resources/awscc_signer_profile_permission/import.sh" + "path": "./examples/resources/awscc_signer_profile_permission/import.sh" }, { "resource": "awscc_signer_signing_profile", "identifier": "Arn", - "path": "../../examples/resources/awscc_signer_signing_profile/import.sh" + "path": "./examples/resources/awscc_signer_signing_profile/import.sh" }, { "resource": "awscc_simspaceweaver_simulation", "identifier": "Name", - "path": "../../examples/resources/awscc_simspaceweaver_simulation/import.sh" + "path": "./examples/resources/awscc_simspaceweaver_simulation/import.sh" }, { "resource": "awscc_stepfunctions_activity", "identifier": "Arn", - "path": "../../examples/resources/awscc_stepfunctions_activity/import.sh" + "path": "./examples/resources/awscc_stepfunctions_activity/import.sh" }, { "resource": "awscc_stepfunctions_state_machine", "identifier": "Arn", - "path": "../../examples/resources/awscc_stepfunctions_state_machine/import.sh" + "path": "./examples/resources/awscc_stepfunctions_state_machine/import.sh" }, { "resource": "awscc_stepfunctions_state_machine_alias", "identifier": "Arn", - "path": "../../examples/resources/awscc_stepfunctions_state_machine_alias/import.sh" + "path": "./examples/resources/awscc_stepfunctions_state_machine_alias/import.sh" }, { "resource": "awscc_stepfunctions_state_machine_version", "identifier": "Arn", - "path": "../../examples/resources/awscc_stepfunctions_state_machine_version/import.sh" + "path": "./examples/resources/awscc_stepfunctions_state_machine_version/import.sh" }, { "resource": "awscc_supportapp_account_alias", "identifier": "AccountAliasResourceId", - "path": "../../examples/resources/awscc_supportapp_account_alias/import.sh" + "path": "./examples/resources/awscc_supportapp_account_alias/import.sh" }, { "resource": "awscc_supportapp_slack_channel_configuration", "identifier": "TeamId,ChannelId", - "path": "../../examples/resources/awscc_supportapp_slack_channel_configuration/import.sh" + "path": "./examples/resources/awscc_supportapp_slack_channel_configuration/import.sh" }, { "resource": "awscc_supportapp_slack_workspace_configuration", "identifier": "TeamId", - "path": "../../examples/resources/awscc_supportapp_slack_workspace_configuration/import.sh" + "path": "./examples/resources/awscc_supportapp_slack_workspace_configuration/import.sh" }, { "resource": "awscc_synthetics_canary", "identifier": "Name", - "path": "../../examples/resources/awscc_synthetics_canary/import.sh" + "path": "./examples/resources/awscc_synthetics_canary/import.sh" }, { "resource": "awscc_synthetics_group", "identifier": "Name", - "path": "../../examples/resources/awscc_synthetics_group/import.sh" + "path": "./examples/resources/awscc_synthetics_group/import.sh" }, { "resource": "awscc_systemsmanagersap_application", "identifier": "Arn", - "path": "../../examples/resources/awscc_systemsmanagersap_application/import.sh" + "path": "./examples/resources/awscc_systemsmanagersap_application/import.sh" }, { "resource": "awscc_timestream_database", "identifier": "DatabaseName", - "path": "../../examples/resources/awscc_timestream_database/import.sh" + "path": "./examples/resources/awscc_timestream_database/import.sh" }, { "resource": "awscc_timestream_influx_db_instance", "identifier": "Id", - "path": "../../examples/resources/awscc_timestream_influx_db_instance/import.sh" + "path": "./examples/resources/awscc_timestream_influx_db_instance/import.sh" }, { "resource": "awscc_timestream_scheduled_query", "identifier": "Arn", - "path": "../../examples/resources/awscc_timestream_scheduled_query/import.sh" + "path": "./examples/resources/awscc_timestream_scheduled_query/import.sh" }, { "resource": "awscc_timestream_table", "identifier": "DatabaseName,TableName", - "path": "../../examples/resources/awscc_timestream_table/import.sh" + "path": "./examples/resources/awscc_timestream_table/import.sh" }, { "resource": "awscc_transfer_agreement", "identifier": "AgreementId,ServerId", - "path": "../../examples/resources/awscc_transfer_agreement/import.sh" + "path": "./examples/resources/awscc_transfer_agreement/import.sh" }, { "resource": "awscc_transfer_certificate", "identifier": "CertificateId", - "path": "../../examples/resources/awscc_transfer_certificate/import.sh" + "path": "./examples/resources/awscc_transfer_certificate/import.sh" }, { "resource": "awscc_transfer_connector", "identifier": "ConnectorId", - "path": "../../examples/resources/awscc_transfer_connector/import.sh" + "path": "./examples/resources/awscc_transfer_connector/import.sh" }, { "resource": "awscc_transfer_profile", "identifier": "ProfileId", - "path": "../../examples/resources/awscc_transfer_profile/import.sh" + "path": "./examples/resources/awscc_transfer_profile/import.sh" }, { "resource": "awscc_transfer_workflow", "identifier": "WorkflowId", - "path": "../../examples/resources/awscc_transfer_workflow/import.sh" + "path": "./examples/resources/awscc_transfer_workflow/import.sh" }, { "resource": "awscc_verifiedpermissions_identity_source", "identifier": "IdentitySourceId,PolicyStoreId", - "path": "../../examples/resources/awscc_verifiedpermissions_identity_source/import.sh" + "path": "./examples/resources/awscc_verifiedpermissions_identity_source/import.sh" }, { "resource": "awscc_verifiedpermissions_policy", "identifier": "PolicyId,PolicyStoreId", - "path": "../../examples/resources/awscc_verifiedpermissions_policy/import.sh" + "path": "./examples/resources/awscc_verifiedpermissions_policy/import.sh" }, { "resource": "awscc_verifiedpermissions_policy_store", "identifier": "PolicyStoreId", - "path": "../../examples/resources/awscc_verifiedpermissions_policy_store/import.sh" + "path": "./examples/resources/awscc_verifiedpermissions_policy_store/import.sh" }, { "resource": "awscc_verifiedpermissions_policy_template", "identifier": "PolicyStoreId,PolicyTemplateId", - "path": "../../examples/resources/awscc_verifiedpermissions_policy_template/import.sh" + "path": "./examples/resources/awscc_verifiedpermissions_policy_template/import.sh" }, { "resource": "awscc_voiceid_domain", "identifier": "DomainId", - "path": "../../examples/resources/awscc_voiceid_domain/import.sh" + "path": "./examples/resources/awscc_voiceid_domain/import.sh" }, { "resource": "awscc_vpclattice_access_log_subscription", "identifier": "Arn", - "path": "../../examples/resources/awscc_vpclattice_access_log_subscription/import.sh" + "path": "./examples/resources/awscc_vpclattice_access_log_subscription/import.sh" }, { "resource": "awscc_vpclattice_auth_policy", "identifier": "ResourceIdentifier", - "path": "../../examples/resources/awscc_vpclattice_auth_policy/import.sh" + "path": "./examples/resources/awscc_vpclattice_auth_policy/import.sh" }, { "resource": "awscc_vpclattice_listener", "identifier": "Arn", - "path": "../../examples/resources/awscc_vpclattice_listener/import.sh" + "path": "./examples/resources/awscc_vpclattice_listener/import.sh" }, { "resource": "awscc_vpclattice_resource_policy", "identifier": "ResourceArn", - "path": "../../examples/resources/awscc_vpclattice_resource_policy/import.sh" + "path": "./examples/resources/awscc_vpclattice_resource_policy/import.sh" }, { "resource": "awscc_vpclattice_rule", "identifier": "Arn", - "path": "../../examples/resources/awscc_vpclattice_rule/import.sh" + "path": "./examples/resources/awscc_vpclattice_rule/import.sh" }, { "resource": "awscc_vpclattice_service", "identifier": "Arn", - "path": "../../examples/resources/awscc_vpclattice_service/import.sh" + "path": "./examples/resources/awscc_vpclattice_service/import.sh" }, { "resource": "awscc_vpclattice_service_network", "identifier": "Arn", - "path": "../../examples/resources/awscc_vpclattice_service_network/import.sh" + "path": "./examples/resources/awscc_vpclattice_service_network/import.sh" }, { "resource": "awscc_vpclattice_service_network_service_association", "identifier": "Arn", - "path": "../../examples/resources/awscc_vpclattice_service_network_service_association/import.sh" + "path": "./examples/resources/awscc_vpclattice_service_network_service_association/import.sh" }, { "resource": "awscc_vpclattice_service_network_vpc_association", "identifier": "Arn", - "path": "../../examples/resources/awscc_vpclattice_service_network_vpc_association/import.sh" + "path": "./examples/resources/awscc_vpclattice_service_network_vpc_association/import.sh" }, { "resource": "awscc_vpclattice_target_group", "identifier": "Arn", - "path": "../../examples/resources/awscc_vpclattice_target_group/import.sh" + "path": "./examples/resources/awscc_vpclattice_target_group/import.sh" }, { "resource": "awscc_wafv2_ip_set", "identifier": "Name,Id,Scope", - "path": "../../examples/resources/awscc_wafv2_ip_set/import.sh" + "path": "./examples/resources/awscc_wafv2_ip_set/import.sh" }, { "resource": "awscc_wafv2_logging_configuration", "identifier": "ResourceArn", - "path": "../../examples/resources/awscc_wafv2_logging_configuration/import.sh" + "path": "./examples/resources/awscc_wafv2_logging_configuration/import.sh" }, { "resource": "awscc_wafv2_regex_pattern_set", "identifier": "Name,Id,Scope", - "path": "../../examples/resources/awscc_wafv2_regex_pattern_set/import.sh" + "path": "./examples/resources/awscc_wafv2_regex_pattern_set/import.sh" }, { "resource": "awscc_wafv2_web_acl_association", "identifier": "ResourceArn,WebACLArn", - "path": "../../examples/resources/awscc_wafv2_web_acl_association/import.sh" + "path": "./examples/resources/awscc_wafv2_web_acl_association/import.sh" }, { "resource": "awscc_wisdom_assistant", "identifier": "AssistantId", - "path": "../../examples/resources/awscc_wisdom_assistant/import.sh" + "path": "./examples/resources/awscc_wisdom_assistant/import.sh" }, { "resource": "awscc_wisdom_assistant_association", "identifier": "AssistantAssociationId,AssistantId", - "path": "../../examples/resources/awscc_wisdom_assistant_association/import.sh" + "path": "./examples/resources/awscc_wisdom_assistant_association/import.sh" }, { "resource": "awscc_wisdom_knowledge_base", "identifier": "KnowledgeBaseId", - "path": "../../examples/resources/awscc_wisdom_knowledge_base/import.sh" + "path": "./examples/resources/awscc_wisdom_knowledge_base/import.sh" }, { "resource": "awscc_workspaces_connection_alias", "identifier": "AliasId", - "path": "../../examples/resources/awscc_workspaces_connection_alias/import.sh" + "path": "./examples/resources/awscc_workspaces_connection_alias/import.sh" }, { "resource": "awscc_workspaces_workspaces_pool", "identifier": "PoolId", - "path": "../../examples/resources/awscc_workspaces_workspaces_pool/import.sh" + "path": "./examples/resources/awscc_workspaces_workspaces_pool/import.sh" }, { "resource": "awscc_workspacesthinclient_environment", "identifier": "Id", - "path": "../../examples/resources/awscc_workspacesthinclient_environment/import.sh" + "path": "./examples/resources/awscc_workspacesthinclient_environment/import.sh" }, { "resource": "awscc_workspacesweb_browser_settings", "identifier": "BrowserSettingsArn", - "path": "../../examples/resources/awscc_workspacesweb_browser_settings/import.sh" + "path": "./examples/resources/awscc_workspacesweb_browser_settings/import.sh" }, { "resource": "awscc_workspacesweb_identity_provider", "identifier": "IdentityProviderArn", - "path": "../../examples/resources/awscc_workspacesweb_identity_provider/import.sh" + "path": "./examples/resources/awscc_workspacesweb_identity_provider/import.sh" }, { "resource": "awscc_workspacesweb_ip_access_settings", "identifier": "IpAccessSettingsArn", - "path": "../../examples/resources/awscc_workspacesweb_ip_access_settings/import.sh" + "path": "./examples/resources/awscc_workspacesweb_ip_access_settings/import.sh" }, { "resource": "awscc_workspacesweb_network_settings", "identifier": "NetworkSettingsArn", - "path": "../../examples/resources/awscc_workspacesweb_network_settings/import.sh" + "path": "./examples/resources/awscc_workspacesweb_network_settings/import.sh" }, { "resource": "awscc_workspacesweb_portal", "identifier": "PortalArn", - "path": "../../examples/resources/awscc_workspacesweb_portal/import.sh" + "path": "./examples/resources/awscc_workspacesweb_portal/import.sh" }, { "resource": "awscc_workspacesweb_trust_store", "identifier": "TrustStoreArn", - "path": "../../examples/resources/awscc_workspacesweb_trust_store/import.sh" + "path": "./examples/resources/awscc_workspacesweb_trust_store/import.sh" }, { "resource": "awscc_workspacesweb_user_access_logging_settings", "identifier": "UserAccessLoggingSettingsArn", - "path": "../../examples/resources/awscc_workspacesweb_user_access_logging_settings/import.sh" + "path": "./examples/resources/awscc_workspacesweb_user_access_logging_settings/import.sh" }, { "resource": "awscc_workspacesweb_user_settings", "identifier": "UserSettingsArn", - "path": "../../examples/resources/awscc_workspacesweb_user_settings/import.sh" + "path": "./examples/resources/awscc_workspacesweb_user_settings/import.sh" }, { "resource": "awscc_xray_group", "identifier": "GroupARN", - "path": "../../examples/resources/awscc_xray_group/import.sh" + "path": "./examples/resources/awscc_xray_group/import.sh" }, { "resource": "awscc_xray_resource_policy", "identifier": "PolicyName", - "path": "../../examples/resources/awscc_xray_resource_policy/import.sh" + "path": "./examples/resources/awscc_xray_resource_policy/import.sh" }, { "resource": "awscc_xray_sampling_rule", "identifier": "RuleARN", - "path": "../../examples/resources/awscc_xray_sampling_rule/import.sh" + "path": "./examples/resources/awscc_xray_sampling_rule/import.sh" } ] From cd9e9acd3abb0b7ef0164617c9bb13ff81dfd4e5 Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Wed, 28 Aug 2024 14:44:03 -0500 Subject: [PATCH 5/9] rename file --- GNUmakefile | 2 +- .../provider/{import_examples.json => import_examples_gen.json} | 0 internal/provider/schemas.go | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename internal/provider/{import_examples.json => import_examples_gen.json} (100%) diff --git a/GNUmakefile b/GNUmakefile index 3accaf539..f53f2621e 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -62,7 +62,7 @@ tools: prereq-go cd tools && $(GO_VER) install golang.org/x/tools/cmd/goimports@latest docs: prereq-go - $(GO_VER) run internal/provider/generators/import-examples/main.go -file=internal/provider/import_examples.json + $(GO_VER) run internal/provider/generators/import-examples/main.go -file=internal/provider/import_examples_gen.json rm -f docs/data-sources/*.md rm -f docs/resources/*.md @tfplugindocs generate diff --git a/internal/provider/import_examples.json b/internal/provider/import_examples_gen.json similarity index 100% rename from internal/provider/import_examples.json rename to internal/provider/import_examples_gen.json diff --git a/internal/provider/schemas.go b/internal/provider/schemas.go index 7adc00458..a4cb36a5d 100644 --- a/internal/provider/schemas.go +++ b/internal/provider/schemas.go @@ -1,6 +1,6 @@ // Copyright (c) HashiCorp, Inc. // SPDX-License-Identifier: MPL-2.0 -//go:generate go run generators/schema/main.go -config all_schemas.hcl -generated-code-root .. -import-path-root github.com/hashicorp/terraform-provider-awscc/internal -- resources.go singular_data_sources.go plural_data_sources.go import_examples.json +//go:generate go run generators/schema/main.go -config all_schemas.hcl -generated-code-root .. -import-path-root github.com/hashicorp/terraform-provider-awscc/internal -- resources.go singular_data_sources.go plural_data_sources.go import_examples_gen.json package provider From 8451740fb184ee4a5ab85b55bc8ef344160bea5d Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Wed, 28 Aug 2024 15:40:57 -0500 Subject: [PATCH 6/9] ignore copyright headers on import file --- .copywrite.hcl | 1 + 1 file changed, 1 insertion(+) diff --git a/.copywrite.hcl b/.copywrite.hcl index 349b9c83e..3fb62de36 100644 --- a/.copywrite.hcl +++ b/.copywrite.hcl @@ -8,6 +8,7 @@ project { # files or folders should be ignored header_ignore = [ "internal/provider/generators/allschemas/*.hcl", + "internal/provider/import_examples_gen.json", "examples/resources/*/import.sh", "examples/resources/*/*.tf", "examples/data-sources/*/*.tf", From a03134ee14dba8dfb81bf524bcb666a3b300c6c8 Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Wed, 28 Aug 2024 15:44:08 -0500 Subject: [PATCH 7/9] update file description --- internal/provider/generators/import-examples/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/provider/generators/import-examples/main.go b/internal/provider/generators/import-examples/main.go index 1550087f3..26b47eec1 100644 --- a/internal/provider/generators/import-examples/main.go +++ b/internal/provider/generators/import-examples/main.go @@ -19,7 +19,7 @@ import ( ) var ( - file = flag.String("file", "", "Primary identifier for the resource") + file = flag.String("file", "", "File containing import data in JSON list format") ) type FileData struct { From dbe16966e78a0877eeeeb4c9104cfbe603cc2d2c Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Wed, 28 Aug 2024 15:52:42 -0500 Subject: [PATCH 8/9] chore: semgrep fix --- internal/provider/generators/import-examples/main.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/provider/generators/import-examples/main.go b/internal/provider/generators/import-examples/main.go index 26b47eec1..9a268412b 100644 --- a/internal/provider/generators/import-examples/main.go +++ b/internal/provider/generators/import-examples/main.go @@ -57,7 +57,6 @@ func main() { log.Fatal(err) } - fmt.Printf("data: %v\n", data) g := NewGenerator() for _, v := range data { From 725f1b9b6f6e7c010a9349b4df441077d3d9c421 Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Thu, 29 Aug 2024 09:03:53 -0500 Subject: [PATCH 9/9] generate identifier as json list --- .../generators/import-examples/main.go | 15 +- .../provider/generators/schema/imports.tmpl | 2 +- internal/provider/generators/schema/main.go | 4 +- internal/provider/import_examples_gen.json | 2020 ++++++++--------- 4 files changed, 1020 insertions(+), 1021 deletions(-) diff --git a/internal/provider/generators/import-examples/main.go b/internal/provider/generators/import-examples/main.go index 9a268412b..0b3b758f1 100644 --- a/internal/provider/generators/import-examples/main.go +++ b/internal/provider/generators/import-examples/main.go @@ -1,8 +1,8 @@ // Copyright (c) HashiCorp, Inc. // SPDX-License-Identifier: MPL-2.0 -//go:build ignore -// +build ignore +//go:build generate +// +build generate package main @@ -24,7 +24,7 @@ var ( type FileData struct { Resource string - Identifier string + Identifier []string Path string } @@ -60,7 +60,7 @@ func main() { g := NewGenerator() for _, v := range data { - if err := g.GenerateExample(v.Resource, v.Identifier, v.Path); err != nil { + if err := g.GenerateExample(v.Resource, v.Path, v.Identifier); err != nil { g.Fatalf("error generating Terraform %s import example: %s", v.Resource, err) } } @@ -76,17 +76,16 @@ func NewGenerator() *Generator { } } -func (g *Generator) GenerateExample(resourceName, identifier, filename string) error { +func (g *Generator) GenerateExample(resourceName, filename string, identifier []string) error { g.Infof("generating Terraform import code for %[1]q ", resourceName) templateData := &TemplateData{ ResourceType: resourceName, Identifier: "", } - if identifier != "" { - ident := strings.Split(identifier, ",") + if len(identifier) != 0 { var out []string - for _, i := range ident { + for _, i := range identifier { out = append(out, toSnake(i)) } diff --git a/internal/provider/generators/schema/imports.tmpl b/internal/provider/generators/schema/imports.tmpl index 49e9831a4..21ade1a18 100644 --- a/internal/provider/generators/schema/imports.tmpl +++ b/internal/provider/generators/schema/imports.tmpl @@ -3,7 +3,7 @@ {{- if $i}},{{- end}} { "resource": "{{ $e.ResourceName }}", - "identifier": "{{ $e.Identifier }}", + "identifier": [{{- range $i, $v := $e.Identifier }} {{- if $i}},{{- end}}"{{ $v }}"{{- end}}], "path": "./examples/resources/{{ $e.ResourceName }}/import.sh" } {{- end}} diff --git a/internal/provider/generators/schema/main.go b/internal/provider/generators/schema/main.go index 18af5ede8..6f8f0c45f 100644 --- a/internal/provider/generators/schema/main.go +++ b/internal/provider/generators/schema/main.go @@ -406,7 +406,7 @@ type DataSourceData struct { type ResourceImportData struct { ResourceName string - Identifier string + Identifier []string } type DataSources struct { @@ -534,7 +534,7 @@ func (g *Generator) GenerateResourceImportExamples(packageName, filename string, out := strings.TrimPrefix(v, "/properties/") temp = append(temp, out) } - r.Identifier = strings.Join(temp, ",") + r.Identifier = temp importsTemplateData.Resources = append(importsTemplateData.Resources, r) } i := g.NewUnformattedFileDestination(filename) diff --git a/internal/provider/import_examples_gen.json b/internal/provider/import_examples_gen.json index f33ca281f..076abfe48 100644 --- a/internal/provider/import_examples_gen.json +++ b/internal/provider/import_examples_gen.json @@ -1,5052 +1,5052 @@ [ { "resource": "awscc_acmpca_certificate", - "identifier": "Arn,CertificateAuthorityArn", + "identifier": ["Arn","CertificateAuthorityArn"], "path": "./examples/resources/awscc_acmpca_certificate/import.sh" }, { "resource": "awscc_acmpca_certificate_authority", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_acmpca_certificate_authority/import.sh" }, { "resource": "awscc_acmpca_certificate_authority_activation", - "identifier": "CertificateAuthorityArn", + "identifier": ["CertificateAuthorityArn"], "path": "./examples/resources/awscc_acmpca_certificate_authority_activation/import.sh" }, { "resource": "awscc_acmpca_permission", - "identifier": "CertificateAuthorityArn,Principal", + "identifier": ["CertificateAuthorityArn","Principal"], "path": "./examples/resources/awscc_acmpca_permission/import.sh" }, { "resource": "awscc_aps_rule_groups_namespace", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_aps_rule_groups_namespace/import.sh" }, { "resource": "awscc_aps_scraper", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_aps_scraper/import.sh" }, { "resource": "awscc_aps_workspace", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_aps_workspace/import.sh" }, { "resource": "awscc_arczonalshift_autoshift_observer_notification_status", - "identifier": "AccountId,Region", + "identifier": ["AccountId","Region"], "path": "./examples/resources/awscc_arczonalshift_autoshift_observer_notification_status/import.sh" }, { "resource": "awscc_arczonalshift_zonal_autoshift_configuration", - "identifier": "ResourceIdentifier", + "identifier": ["ResourceIdentifier"], "path": "./examples/resources/awscc_arczonalshift_zonal_autoshift_configuration/import.sh" }, { "resource": "awscc_accessanalyzer_analyzer", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_accessanalyzer_analyzer/import.sh" }, { "resource": "awscc_amplify_app", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_amplify_app/import.sh" }, { "resource": "awscc_amplify_branch", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_amplify_branch/import.sh" }, { "resource": "awscc_amplify_domain", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_amplify_domain/import.sh" }, { "resource": "awscc_apigateway_account", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_apigateway_account/import.sh" }, { "resource": "awscc_apigateway_api_key", - "identifier": "APIKeyId", + "identifier": ["APIKeyId"], "path": "./examples/resources/awscc_apigateway_api_key/import.sh" }, { "resource": "awscc_apigateway_authorizer", - "identifier": "RestApiId,AuthorizerId", + "identifier": ["RestApiId","AuthorizerId"], "path": "./examples/resources/awscc_apigateway_authorizer/import.sh" }, { "resource": "awscc_apigateway_base_path_mapping", - "identifier": "DomainName,BasePath", + "identifier": ["DomainName","BasePath"], "path": "./examples/resources/awscc_apigateway_base_path_mapping/import.sh" }, { "resource": "awscc_apigateway_client_certificate", - "identifier": "ClientCertificateId", + "identifier": ["ClientCertificateId"], "path": "./examples/resources/awscc_apigateway_client_certificate/import.sh" }, { "resource": "awscc_apigateway_deployment", - "identifier": "DeploymentId,RestApiId", + "identifier": ["DeploymentId","RestApiId"], "path": "./examples/resources/awscc_apigateway_deployment/import.sh" }, { "resource": "awscc_apigateway_documentation_part", - "identifier": "DocumentationPartId,RestApiId", + "identifier": ["DocumentationPartId","RestApiId"], "path": "./examples/resources/awscc_apigateway_documentation_part/import.sh" }, { "resource": "awscc_apigateway_documentation_version", - "identifier": "DocumentationVersion,RestApiId", + "identifier": ["DocumentationVersion","RestApiId"], "path": "./examples/resources/awscc_apigateway_documentation_version/import.sh" }, { "resource": "awscc_apigateway_domain_name", - "identifier": "DomainName", + "identifier": ["DomainName"], "path": "./examples/resources/awscc_apigateway_domain_name/import.sh" }, { "resource": "awscc_apigateway_gateway_response", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_apigateway_gateway_response/import.sh" }, { "resource": "awscc_apigateway_method", - "identifier": "RestApiId,ResourceId,HttpMethod", + "identifier": ["RestApiId","ResourceId","HttpMethod"], "path": "./examples/resources/awscc_apigateway_method/import.sh" }, { "resource": "awscc_apigateway_model", - "identifier": "RestApiId,Name", + "identifier": ["RestApiId","Name"], "path": "./examples/resources/awscc_apigateway_model/import.sh" }, { "resource": "awscc_apigateway_request_validator", - "identifier": "RestApiId,RequestValidatorId", + "identifier": ["RestApiId","RequestValidatorId"], "path": "./examples/resources/awscc_apigateway_request_validator/import.sh" }, { "resource": "awscc_apigateway_resource", - "identifier": "RestApiId,ResourceId", + "identifier": ["RestApiId","ResourceId"], "path": "./examples/resources/awscc_apigateway_resource/import.sh" }, { "resource": "awscc_apigateway_rest_api", - "identifier": "RestApiId", + "identifier": ["RestApiId"], "path": "./examples/resources/awscc_apigateway_rest_api/import.sh" }, { "resource": "awscc_apigateway_stage", - "identifier": "RestApiId,StageName", + "identifier": ["RestApiId","StageName"], "path": "./examples/resources/awscc_apigateway_stage/import.sh" }, { "resource": "awscc_apigateway_usage_plan", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_apigateway_usage_plan/import.sh" }, { "resource": "awscc_apigateway_usage_plan_key", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_apigateway_usage_plan_key/import.sh" }, { "resource": "awscc_apigateway_vpc_link", - "identifier": "VpcLinkId", + "identifier": ["VpcLinkId"], "path": "./examples/resources/awscc_apigateway_vpc_link/import.sh" }, { "resource": "awscc_apigatewayv2_api", - "identifier": "ApiId", + "identifier": ["ApiId"], "path": "./examples/resources/awscc_apigatewayv2_api/import.sh" }, { "resource": "awscc_apigatewayv2_api_mapping", - "identifier": "ApiMappingId,DomainName", + "identifier": ["ApiMappingId","DomainName"], "path": "./examples/resources/awscc_apigatewayv2_api_mapping/import.sh" }, { "resource": "awscc_apigatewayv2_authorizer", - "identifier": "AuthorizerId,ApiId", + "identifier": ["AuthorizerId","ApiId"], "path": "./examples/resources/awscc_apigatewayv2_authorizer/import.sh" }, { "resource": "awscc_apigatewayv2_deployment", - "identifier": "ApiId,DeploymentId", + "identifier": ["ApiId","DeploymentId"], "path": "./examples/resources/awscc_apigatewayv2_deployment/import.sh" }, { "resource": "awscc_apigatewayv2_domain_name", - "identifier": "DomainName", + "identifier": ["DomainName"], "path": "./examples/resources/awscc_apigatewayv2_domain_name/import.sh" }, { "resource": "awscc_apigatewayv2_integration_response", - "identifier": "ApiId,IntegrationId,IntegrationResponseId", + "identifier": ["ApiId","IntegrationId","IntegrationResponseId"], "path": "./examples/resources/awscc_apigatewayv2_integration_response/import.sh" }, { "resource": "awscc_apigatewayv2_model", - "identifier": "ApiId,ModelId", + "identifier": ["ApiId","ModelId"], "path": "./examples/resources/awscc_apigatewayv2_model/import.sh" }, { "resource": "awscc_apigatewayv2_route", - "identifier": "ApiId,RouteId", + "identifier": ["ApiId","RouteId"], "path": "./examples/resources/awscc_apigatewayv2_route/import.sh" }, { "resource": "awscc_apigatewayv2_route_response", - "identifier": "ApiId,RouteId,RouteResponseId", + "identifier": ["ApiId","RouteId","RouteResponseId"], "path": "./examples/resources/awscc_apigatewayv2_route_response/import.sh" }, { "resource": "awscc_apigatewayv2_vpc_link", - "identifier": "VpcLinkId", + "identifier": ["VpcLinkId"], "path": "./examples/resources/awscc_apigatewayv2_vpc_link/import.sh" }, { "resource": "awscc_appconfig_application", - "identifier": "ApplicationId", + "identifier": ["ApplicationId"], "path": "./examples/resources/awscc_appconfig_application/import.sh" }, { "resource": "awscc_appconfig_configuration_profile", - "identifier": "ApplicationId,ConfigurationProfileId", + "identifier": ["ApplicationId","ConfigurationProfileId"], "path": "./examples/resources/awscc_appconfig_configuration_profile/import.sh" }, { "resource": "awscc_appconfig_environment", - "identifier": "ApplicationId,EnvironmentId", + "identifier": ["ApplicationId","EnvironmentId"], "path": "./examples/resources/awscc_appconfig_environment/import.sh" }, { "resource": "awscc_appconfig_extension_association", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_appconfig_extension_association/import.sh" }, { "resource": "awscc_appconfig_hosted_configuration_version", - "identifier": "ApplicationId,ConfigurationProfileId,VersionNumber", + "identifier": ["ApplicationId","ConfigurationProfileId","VersionNumber"], "path": "./examples/resources/awscc_appconfig_hosted_configuration_version/import.sh" }, { "resource": "awscc_appflow_connector", - "identifier": "ConnectorLabel", + "identifier": ["ConnectorLabel"], "path": "./examples/resources/awscc_appflow_connector/import.sh" }, { "resource": "awscc_appflow_connector_profile", - "identifier": "ConnectorProfileName", + "identifier": ["ConnectorProfileName"], "path": "./examples/resources/awscc_appflow_connector_profile/import.sh" }, { "resource": "awscc_appflow_flow", - "identifier": "FlowName", + "identifier": ["FlowName"], "path": "./examples/resources/awscc_appflow_flow/import.sh" }, { "resource": "awscc_appintegrations_application", - "identifier": "ApplicationArn", + "identifier": ["ApplicationArn"], "path": "./examples/resources/awscc_appintegrations_application/import.sh" }, { "resource": "awscc_appintegrations_event_integration", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_appintegrations_event_integration/import.sh" }, { "resource": "awscc_apprunner_auto_scaling_configuration", - "identifier": "AutoScalingConfigurationArn", + "identifier": ["AutoScalingConfigurationArn"], "path": "./examples/resources/awscc_apprunner_auto_scaling_configuration/import.sh" }, { "resource": "awscc_apprunner_observability_configuration", - "identifier": "ObservabilityConfigurationArn", + "identifier": ["ObservabilityConfigurationArn"], "path": "./examples/resources/awscc_apprunner_observability_configuration/import.sh" }, { "resource": "awscc_apprunner_service", - "identifier": "ServiceArn", + "identifier": ["ServiceArn"], "path": "./examples/resources/awscc_apprunner_service/import.sh" }, { "resource": "awscc_apprunner_vpc_connector", - "identifier": "VpcConnectorArn", + "identifier": ["VpcConnectorArn"], "path": "./examples/resources/awscc_apprunner_vpc_connector/import.sh" }, { "resource": "awscc_apprunner_vpc_ingress_connection", - "identifier": "VpcIngressConnectionArn", + "identifier": ["VpcIngressConnectionArn"], "path": "./examples/resources/awscc_apprunner_vpc_ingress_connection/import.sh" }, { "resource": "awscc_appstream_app_block", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_appstream_app_block/import.sh" }, { "resource": "awscc_appstream_app_block_builder", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_appstream_app_block_builder/import.sh" }, { "resource": "awscc_appstream_application", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_appstream_application/import.sh" }, { "resource": "awscc_appstream_application_entitlement_association", - "identifier": "StackName,EntitlementName,ApplicationIdentifier", + "identifier": ["StackName","EntitlementName","ApplicationIdentifier"], "path": "./examples/resources/awscc_appstream_application_entitlement_association/import.sh" }, { "resource": "awscc_appstream_application_fleet_association", - "identifier": "FleetName,ApplicationArn", + "identifier": ["FleetName","ApplicationArn"], "path": "./examples/resources/awscc_appstream_application_fleet_association/import.sh" }, { "resource": "awscc_appstream_directory_config", - "identifier": "DirectoryName", + "identifier": ["DirectoryName"], "path": "./examples/resources/awscc_appstream_directory_config/import.sh" }, { "resource": "awscc_appstream_entitlement", - "identifier": "StackName,Name", + "identifier": ["StackName","Name"], "path": "./examples/resources/awscc_appstream_entitlement/import.sh" }, { "resource": "awscc_appstream_image_builder", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_appstream_image_builder/import.sh" }, { "resource": "awscc_appsync_domain_name", - "identifier": "DomainName", + "identifier": ["DomainName"], "path": "./examples/resources/awscc_appsync_domain_name/import.sh" }, { "resource": "awscc_appsync_domain_name_api_association", - "identifier": "ApiAssociationIdentifier", + "identifier": ["ApiAssociationIdentifier"], "path": "./examples/resources/awscc_appsync_domain_name_api_association/import.sh" }, { "resource": "awscc_appsync_function_configuration", - "identifier": "FunctionArn", + "identifier": ["FunctionArn"], "path": "./examples/resources/awscc_appsync_function_configuration/import.sh" }, { "resource": "awscc_appsync_resolver", - "identifier": "ResolverArn", + "identifier": ["ResolverArn"], "path": "./examples/resources/awscc_appsync_resolver/import.sh" }, { "resource": "awscc_appsync_source_api_association", - "identifier": "AssociationArn", + "identifier": ["AssociationArn"], "path": "./examples/resources/awscc_appsync_source_api_association/import.sh" }, { "resource": "awscc_apptest_test_case", - "identifier": "TestCaseId", + "identifier": ["TestCaseId"], "path": "./examples/resources/awscc_apptest_test_case/import.sh" }, { "resource": "awscc_applicationautoscaling_scalable_target", - "identifier": "ResourceId,ScalableDimension,ServiceNamespace", + "identifier": ["ResourceId","ScalableDimension","ServiceNamespace"], "path": "./examples/resources/awscc_applicationautoscaling_scalable_target/import.sh" }, { "resource": "awscc_applicationautoscaling_scaling_policy", - "identifier": "Arn,ScalableDimension", + "identifier": ["Arn","ScalableDimension"], "path": "./examples/resources/awscc_applicationautoscaling_scaling_policy/import.sh" }, { "resource": "awscc_applicationinsights_application", - "identifier": "ApplicationARN", + "identifier": ["ApplicationARN"], "path": "./examples/resources/awscc_applicationinsights_application/import.sh" }, { "resource": "awscc_applicationsignals_service_level_objective", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_applicationsignals_service_level_objective/import.sh" }, { "resource": "awscc_athena_capacity_reservation", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_athena_capacity_reservation/import.sh" }, { "resource": "awscc_athena_data_catalog", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_athena_data_catalog/import.sh" }, { "resource": "awscc_athena_named_query", - "identifier": "NamedQueryId", + "identifier": ["NamedQueryId"], "path": "./examples/resources/awscc_athena_named_query/import.sh" }, { "resource": "awscc_athena_prepared_statement", - "identifier": "StatementName,WorkGroup", + "identifier": ["StatementName","WorkGroup"], "path": "./examples/resources/awscc_athena_prepared_statement/import.sh" }, { "resource": "awscc_athena_work_group", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_athena_work_group/import.sh" }, { "resource": "awscc_auditmanager_assessment", - "identifier": "AssessmentId", + "identifier": ["AssessmentId"], "path": "./examples/resources/awscc_auditmanager_assessment/import.sh" }, { "resource": "awscc_autoscaling_auto_scaling_group", - "identifier": "AutoScalingGroupName", + "identifier": ["AutoScalingGroupName"], "path": "./examples/resources/awscc_autoscaling_auto_scaling_group/import.sh" }, { "resource": "awscc_autoscaling_launch_configuration", - "identifier": "LaunchConfigurationName", + "identifier": ["LaunchConfigurationName"], "path": "./examples/resources/awscc_autoscaling_launch_configuration/import.sh" }, { "resource": "awscc_autoscaling_lifecycle_hook", - "identifier": "AutoScalingGroupName,LifecycleHookName", + "identifier": ["AutoScalingGroupName","LifecycleHookName"], "path": "./examples/resources/awscc_autoscaling_lifecycle_hook/import.sh" }, { "resource": "awscc_autoscaling_scaling_policy", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_autoscaling_scaling_policy/import.sh" }, { "resource": "awscc_autoscaling_scheduled_action", - "identifier": "ScheduledActionName,AutoScalingGroupName", + "identifier": ["ScheduledActionName","AutoScalingGroupName"], "path": "./examples/resources/awscc_autoscaling_scheduled_action/import.sh" }, { "resource": "awscc_autoscaling_warm_pool", - "identifier": "AutoScalingGroupName", + "identifier": ["AutoScalingGroupName"], "path": "./examples/resources/awscc_autoscaling_warm_pool/import.sh" }, { "resource": "awscc_b2bi_capability", - "identifier": "CapabilityId", + "identifier": ["CapabilityId"], "path": "./examples/resources/awscc_b2bi_capability/import.sh" }, { "resource": "awscc_b2bi_partnership", - "identifier": "PartnershipId", + "identifier": ["PartnershipId"], "path": "./examples/resources/awscc_b2bi_partnership/import.sh" }, { "resource": "awscc_b2bi_profile", - "identifier": "ProfileId", + "identifier": ["ProfileId"], "path": "./examples/resources/awscc_b2bi_profile/import.sh" }, { "resource": "awscc_b2bi_transformer", - "identifier": "TransformerId", + "identifier": ["TransformerId"], "path": "./examples/resources/awscc_b2bi_transformer/import.sh" }, { "resource": "awscc_backup_backup_plan", - "identifier": "BackupPlanId", + "identifier": ["BackupPlanId"], "path": "./examples/resources/awscc_backup_backup_plan/import.sh" }, { "resource": "awscc_backup_backup_selection", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_backup_backup_selection/import.sh" }, { "resource": "awscc_backup_backup_vault", - "identifier": "BackupVaultName", + "identifier": ["BackupVaultName"], "path": "./examples/resources/awscc_backup_backup_vault/import.sh" }, { "resource": "awscc_backup_framework", - "identifier": "FrameworkArn", + "identifier": ["FrameworkArn"], "path": "./examples/resources/awscc_backup_framework/import.sh" }, { "resource": "awscc_backup_report_plan", - "identifier": "ReportPlanArn", + "identifier": ["ReportPlanArn"], "path": "./examples/resources/awscc_backup_report_plan/import.sh" }, { "resource": "awscc_backup_restore_testing_plan", - "identifier": "RestoreTestingPlanName", + "identifier": ["RestoreTestingPlanName"], "path": "./examples/resources/awscc_backup_restore_testing_plan/import.sh" }, { "resource": "awscc_backup_restore_testing_selection", - "identifier": "RestoreTestingPlanName,RestoreTestingSelectionName", + "identifier": ["RestoreTestingPlanName","RestoreTestingSelectionName"], "path": "./examples/resources/awscc_backup_restore_testing_selection/import.sh" }, { "resource": "awscc_backupgateway_hypervisor", - "identifier": "HypervisorArn", + "identifier": ["HypervisorArn"], "path": "./examples/resources/awscc_backupgateway_hypervisor/import.sh" }, { "resource": "awscc_batch_compute_environment", - "identifier": "ComputeEnvironmentArn", + "identifier": ["ComputeEnvironmentArn"], "path": "./examples/resources/awscc_batch_compute_environment/import.sh" }, { "resource": "awscc_batch_job_queue", - "identifier": "JobQueueArn", + "identifier": ["JobQueueArn"], "path": "./examples/resources/awscc_batch_job_queue/import.sh" }, { "resource": "awscc_batch_scheduling_policy", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_batch_scheduling_policy/import.sh" }, { "resource": "awscc_bedrock_agent", - "identifier": "AgentId", + "identifier": ["AgentId"], "path": "./examples/resources/awscc_bedrock_agent/import.sh" }, { "resource": "awscc_bedrock_agent_alias", - "identifier": "AgentId,AgentAliasId", + "identifier": ["AgentId","AgentAliasId"], "path": "./examples/resources/awscc_bedrock_agent_alias/import.sh" }, { "resource": "awscc_bedrock_data_source", - "identifier": "KnowledgeBaseId,DataSourceId", + "identifier": ["KnowledgeBaseId","DataSourceId"], "path": "./examples/resources/awscc_bedrock_data_source/import.sh" }, { "resource": "awscc_bedrock_flow_alias", - "identifier": "Arn,FlowArn", + "identifier": ["Arn","FlowArn"], "path": "./examples/resources/awscc_bedrock_flow_alias/import.sh" }, { "resource": "awscc_bedrock_flow_version", - "identifier": "FlowArn,Version", + "identifier": ["FlowArn","Version"], "path": "./examples/resources/awscc_bedrock_flow_version/import.sh" }, { "resource": "awscc_bedrock_guardrail", - "identifier": "GuardrailArn", + "identifier": ["GuardrailArn"], "path": "./examples/resources/awscc_bedrock_guardrail/import.sh" }, { "resource": "awscc_bedrock_guardrail_version", - "identifier": "GuardrailId,Version", + "identifier": ["GuardrailId","Version"], "path": "./examples/resources/awscc_bedrock_guardrail_version/import.sh" }, { "resource": "awscc_bedrock_knowledge_base", - "identifier": "KnowledgeBaseId", + "identifier": ["KnowledgeBaseId"], "path": "./examples/resources/awscc_bedrock_knowledge_base/import.sh" }, { "resource": "awscc_bedrock_prompt", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_bedrock_prompt/import.sh" }, { "resource": "awscc_bedrock_prompt_version", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_bedrock_prompt_version/import.sh" }, { "resource": "awscc_billingconductor_billing_group", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_billingconductor_billing_group/import.sh" }, { "resource": "awscc_billingconductor_custom_line_item", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_billingconductor_custom_line_item/import.sh" }, { "resource": "awscc_billingconductor_pricing_plan", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_billingconductor_pricing_plan/import.sh" }, { "resource": "awscc_billingconductor_pricing_rule", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_billingconductor_pricing_rule/import.sh" }, { "resource": "awscc_budgets_budgets_action", - "identifier": "ActionId,BudgetName", + "identifier": ["ActionId","BudgetName"], "path": "./examples/resources/awscc_budgets_budgets_action/import.sh" }, { "resource": "awscc_ce_anomaly_monitor", - "identifier": "MonitorArn", + "identifier": ["MonitorArn"], "path": "./examples/resources/awscc_ce_anomaly_monitor/import.sh" }, { "resource": "awscc_ce_anomaly_subscription", - "identifier": "SubscriptionArn", + "identifier": ["SubscriptionArn"], "path": "./examples/resources/awscc_ce_anomaly_subscription/import.sh" }, { "resource": "awscc_ce_cost_category", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ce_cost_category/import.sh" }, { "resource": "awscc_cur_report_definition", - "identifier": "ReportName", + "identifier": ["ReportName"], "path": "./examples/resources/awscc_cur_report_definition/import.sh" }, { "resource": "awscc_cassandra_keyspace", - "identifier": "KeyspaceName", + "identifier": ["KeyspaceName"], "path": "./examples/resources/awscc_cassandra_keyspace/import.sh" }, { "resource": "awscc_cassandra_table", - "identifier": "KeyspaceName,TableName", + "identifier": ["KeyspaceName","TableName"], "path": "./examples/resources/awscc_cassandra_table/import.sh" }, { "resource": "awscc_certificatemanager_account", - "identifier": "AccountId", + "identifier": ["AccountId"], "path": "./examples/resources/awscc_certificatemanager_account/import.sh" }, { "resource": "awscc_chatbot_microsoft_teams_channel_configuration", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_chatbot_microsoft_teams_channel_configuration/import.sh" }, { "resource": "awscc_chatbot_slack_channel_configuration", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_chatbot_slack_channel_configuration/import.sh" }, { "resource": "awscc_cleanrooms_analysis_template", - "identifier": "AnalysisTemplateIdentifier,MembershipIdentifier", + "identifier": ["AnalysisTemplateIdentifier","MembershipIdentifier"], "path": "./examples/resources/awscc_cleanrooms_analysis_template/import.sh" }, { "resource": "awscc_cleanrooms_collaboration", - "identifier": "CollaborationIdentifier", + "identifier": ["CollaborationIdentifier"], "path": "./examples/resources/awscc_cleanrooms_collaboration/import.sh" }, { "resource": "awscc_cleanrooms_configured_table", - "identifier": "ConfiguredTableIdentifier", + "identifier": ["ConfiguredTableIdentifier"], "path": "./examples/resources/awscc_cleanrooms_configured_table/import.sh" }, { "resource": "awscc_cleanrooms_configured_table_association", - "identifier": "ConfiguredTableAssociationIdentifier,MembershipIdentifier", + "identifier": ["ConfiguredTableAssociationIdentifier","MembershipIdentifier"], "path": "./examples/resources/awscc_cleanrooms_configured_table_association/import.sh" }, { "resource": "awscc_cleanrooms_id_mapping_table", - "identifier": "IdMappingTableIdentifier,MembershipIdentifier", + "identifier": ["IdMappingTableIdentifier","MembershipIdentifier"], "path": "./examples/resources/awscc_cleanrooms_id_mapping_table/import.sh" }, { "resource": "awscc_cleanrooms_membership", - "identifier": "MembershipIdentifier", + "identifier": ["MembershipIdentifier"], "path": "./examples/resources/awscc_cleanrooms_membership/import.sh" }, { "resource": "awscc_cleanrooms_privacy_budget_template", - "identifier": "PrivacyBudgetTemplateIdentifier,MembershipIdentifier", + "identifier": ["PrivacyBudgetTemplateIdentifier","MembershipIdentifier"], "path": "./examples/resources/awscc_cleanrooms_privacy_budget_template/import.sh" }, { "resource": "awscc_cleanroomsml_training_dataset", - "identifier": "TrainingDatasetArn", + "identifier": ["TrainingDatasetArn"], "path": "./examples/resources/awscc_cleanroomsml_training_dataset/import.sh" }, { "resource": "awscc_cloudformation_hook_default_version", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_cloudformation_hook_default_version/import.sh" }, { "resource": "awscc_cloudformation_hook_type_config", - "identifier": "ConfigurationArn", + "identifier": ["ConfigurationArn"], "path": "./examples/resources/awscc_cloudformation_hook_type_config/import.sh" }, { "resource": "awscc_cloudformation_hook_version", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_cloudformation_hook_version/import.sh" }, { "resource": "awscc_cloudformation_module_default_version", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_cloudformation_module_default_version/import.sh" }, { "resource": "awscc_cloudformation_module_version", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_cloudformation_module_version/import.sh" }, { "resource": "awscc_cloudformation_public_type_version", - "identifier": "PublicTypeArn", + "identifier": ["PublicTypeArn"], "path": "./examples/resources/awscc_cloudformation_public_type_version/import.sh" }, { "resource": "awscc_cloudformation_publisher", - "identifier": "PublisherId", + "identifier": ["PublisherId"], "path": "./examples/resources/awscc_cloudformation_publisher/import.sh" }, { "resource": "awscc_cloudformation_resource_default_version", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_cloudformation_resource_default_version/import.sh" }, { "resource": "awscc_cloudformation_resource_version", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_cloudformation_resource_version/import.sh" }, { "resource": "awscc_cloudformation_stack", - "identifier": "StackId", + "identifier": ["StackId"], "path": "./examples/resources/awscc_cloudformation_stack/import.sh" }, { "resource": "awscc_cloudformation_stack_set", - "identifier": "StackSetId", + "identifier": ["StackSetId"], "path": "./examples/resources/awscc_cloudformation_stack_set/import.sh" }, { "resource": "awscc_cloudformation_type_activation", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_cloudformation_type_activation/import.sh" }, { "resource": "awscc_cloudfront_cache_policy", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_cloudfront_cache_policy/import.sh" }, { "resource": "awscc_cloudfront_cloudfront_origin_access_identity", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_cloudfront_cloudfront_origin_access_identity/import.sh" }, { "resource": "awscc_cloudfront_continuous_deployment_policy", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_cloudfront_continuous_deployment_policy/import.sh" }, { "resource": "awscc_cloudfront_distribution", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_cloudfront_distribution/import.sh" }, { "resource": "awscc_cloudfront_function", - "identifier": "FunctionARN", + "identifier": ["FunctionARN"], "path": "./examples/resources/awscc_cloudfront_function/import.sh" }, { "resource": "awscc_cloudfront_key_group", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_cloudfront_key_group/import.sh" }, { "resource": "awscc_cloudfront_key_value_store", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_cloudfront_key_value_store/import.sh" }, { "resource": "awscc_cloudfront_monitoring_subscription", - "identifier": "DistributionId", + "identifier": ["DistributionId"], "path": "./examples/resources/awscc_cloudfront_monitoring_subscription/import.sh" }, { "resource": "awscc_cloudfront_origin_access_control", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_cloudfront_origin_access_control/import.sh" }, { "resource": "awscc_cloudfront_origin_request_policy", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_cloudfront_origin_request_policy/import.sh" }, { "resource": "awscc_cloudfront_public_key", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_cloudfront_public_key/import.sh" }, { "resource": "awscc_cloudfront_realtime_log_config", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_cloudfront_realtime_log_config/import.sh" }, { "resource": "awscc_cloudfront_response_headers_policy", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_cloudfront_response_headers_policy/import.sh" }, { "resource": "awscc_cloudtrail_channel", - "identifier": "ChannelArn", + "identifier": ["ChannelArn"], "path": "./examples/resources/awscc_cloudtrail_channel/import.sh" }, { "resource": "awscc_cloudtrail_event_data_store", - "identifier": "EventDataStoreArn", + "identifier": ["EventDataStoreArn"], "path": "./examples/resources/awscc_cloudtrail_event_data_store/import.sh" }, { "resource": "awscc_cloudtrail_resource_policy", - "identifier": "ResourceArn", + "identifier": ["ResourceArn"], "path": "./examples/resources/awscc_cloudtrail_resource_policy/import.sh" }, { "resource": "awscc_cloudtrail_trail", - "identifier": "TrailName", + "identifier": ["TrailName"], "path": "./examples/resources/awscc_cloudtrail_trail/import.sh" }, { "resource": "awscc_cloudwatch_alarm", - "identifier": "AlarmName", + "identifier": ["AlarmName"], "path": "./examples/resources/awscc_cloudwatch_alarm/import.sh" }, { "resource": "awscc_cloudwatch_composite_alarm", - "identifier": "AlarmName", + "identifier": ["AlarmName"], "path": "./examples/resources/awscc_cloudwatch_composite_alarm/import.sh" }, { "resource": "awscc_cloudwatch_dashboard", - "identifier": "DashboardName", + "identifier": ["DashboardName"], "path": "./examples/resources/awscc_cloudwatch_dashboard/import.sh" }, { "resource": "awscc_cloudwatch_metric_stream", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_cloudwatch_metric_stream/import.sh" }, { "resource": "awscc_codeartifact_domain", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_codeartifact_domain/import.sh" }, { "resource": "awscc_codeartifact_package_group", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_codeartifact_package_group/import.sh" }, { "resource": "awscc_codeartifact_repository", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_codeartifact_repository/import.sh" }, { "resource": "awscc_codebuild_fleet", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_codebuild_fleet/import.sh" }, { "resource": "awscc_codeconnections_connection", - "identifier": "ConnectionArn", + "identifier": ["ConnectionArn"], "path": "./examples/resources/awscc_codeconnections_connection/import.sh" }, { "resource": "awscc_codedeploy_application", - "identifier": "ApplicationName", + "identifier": ["ApplicationName"], "path": "./examples/resources/awscc_codedeploy_application/import.sh" }, { "resource": "awscc_codedeploy_deployment_config", - "identifier": "DeploymentConfigName", + "identifier": ["DeploymentConfigName"], "path": "./examples/resources/awscc_codedeploy_deployment_config/import.sh" }, { "resource": "awscc_codeguruprofiler_profiling_group", - "identifier": "ProfilingGroupName", + "identifier": ["ProfilingGroupName"], "path": "./examples/resources/awscc_codeguruprofiler_profiling_group/import.sh" }, { "resource": "awscc_codegurureviewer_repository_association", - "identifier": "AssociationArn", + "identifier": ["AssociationArn"], "path": "./examples/resources/awscc_codegurureviewer_repository_association/import.sh" }, { "resource": "awscc_codepipeline_custom_action_type", - "identifier": "Category,Provider,Version", + "identifier": ["Category","Provider","Version"], "path": "./examples/resources/awscc_codepipeline_custom_action_type/import.sh" }, { "resource": "awscc_codepipeline_pipeline", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_codepipeline_pipeline/import.sh" }, { "resource": "awscc_codestarconnections_connection", - "identifier": "ConnectionArn", + "identifier": ["ConnectionArn"], "path": "./examples/resources/awscc_codestarconnections_connection/import.sh" }, { "resource": "awscc_codestarconnections_repository_link", - "identifier": "RepositoryLinkArn", + "identifier": ["RepositoryLinkArn"], "path": "./examples/resources/awscc_codestarconnections_repository_link/import.sh" }, { "resource": "awscc_codestarconnections_sync_configuration", - "identifier": "ResourceName,SyncType", + "identifier": ["ResourceName","SyncType"], "path": "./examples/resources/awscc_codestarconnections_sync_configuration/import.sh" }, { "resource": "awscc_codestarnotifications_notification_rule", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_codestarnotifications_notification_rule/import.sh" }, { "resource": "awscc_cognito_identity_pool", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_cognito_identity_pool/import.sh" }, { "resource": "awscc_cognito_identity_pool_principal_tag", - "identifier": "IdentityPoolId,IdentityProviderName", + "identifier": ["IdentityPoolId","IdentityProviderName"], "path": "./examples/resources/awscc_cognito_identity_pool_principal_tag/import.sh" }, { "resource": "awscc_cognito_identity_pool_role_attachment", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_cognito_identity_pool_role_attachment/import.sh" }, { "resource": "awscc_cognito_log_delivery_configuration", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_cognito_log_delivery_configuration/import.sh" }, { "resource": "awscc_cognito_user_pool_client", - "identifier": "UserPoolId,ClientId", + "identifier": ["UserPoolId","ClientId"], "path": "./examples/resources/awscc_cognito_user_pool_client/import.sh" }, { "resource": "awscc_cognito_user_pool_group", - "identifier": "UserPoolId,GroupName", + "identifier": ["UserPoolId","GroupName"], "path": "./examples/resources/awscc_cognito_user_pool_group/import.sh" }, { "resource": "awscc_cognito_user_pool_resource_server", - "identifier": "UserPoolId,Identifier", + "identifier": ["UserPoolId","Identifier"], "path": "./examples/resources/awscc_cognito_user_pool_resource_server/import.sh" }, { "resource": "awscc_cognito_user_pool_risk_configuration_attachment", - "identifier": "UserPoolId,ClientId", + "identifier": ["UserPoolId","ClientId"], "path": "./examples/resources/awscc_cognito_user_pool_risk_configuration_attachment/import.sh" }, { "resource": "awscc_cognito_user_pool_ui_customization_attachment", - "identifier": "UserPoolId,ClientId", + "identifier": ["UserPoolId","ClientId"], "path": "./examples/resources/awscc_cognito_user_pool_ui_customization_attachment/import.sh" }, { "resource": "awscc_cognito_user_pool_user", - "identifier": "UserPoolId,Username", + "identifier": ["UserPoolId","Username"], "path": "./examples/resources/awscc_cognito_user_pool_user/import.sh" }, { "resource": "awscc_cognito_user_pool_user_to_group_attachment", - "identifier": "UserPoolId,GroupName,Username", + "identifier": ["UserPoolId","GroupName","Username"], "path": "./examples/resources/awscc_cognito_user_pool_user_to_group_attachment/import.sh" }, { "resource": "awscc_comprehend_document_classifier", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_comprehend_document_classifier/import.sh" }, { "resource": "awscc_comprehend_flywheel", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_comprehend_flywheel/import.sh" }, { "resource": "awscc_config_aggregation_authorization", - "identifier": "AuthorizedAccountId,AuthorizedAwsRegion", + "identifier": ["AuthorizedAccountId","AuthorizedAwsRegion"], "path": "./examples/resources/awscc_config_aggregation_authorization/import.sh" }, { "resource": "awscc_config_config_rule", - "identifier": "ConfigRuleName", + "identifier": ["ConfigRuleName"], "path": "./examples/resources/awscc_config_config_rule/import.sh" }, { "resource": "awscc_config_configuration_aggregator", - "identifier": "ConfigurationAggregatorName", + "identifier": ["ConfigurationAggregatorName"], "path": "./examples/resources/awscc_config_configuration_aggregator/import.sh" }, { "resource": "awscc_config_conformance_pack", - "identifier": "ConformancePackName", + "identifier": ["ConformancePackName"], "path": "./examples/resources/awscc_config_conformance_pack/import.sh" }, { "resource": "awscc_config_organization_conformance_pack", - "identifier": "OrganizationConformancePackName", + "identifier": ["OrganizationConformancePackName"], "path": "./examples/resources/awscc_config_organization_conformance_pack/import.sh" }, { "resource": "awscc_config_stored_query", - "identifier": "QueryName", + "identifier": ["QueryName"], "path": "./examples/resources/awscc_config_stored_query/import.sh" }, { "resource": "awscc_connect_approved_origin", - "identifier": "InstanceId,Origin", + "identifier": ["InstanceId","Origin"], "path": "./examples/resources/awscc_connect_approved_origin/import.sh" }, { "resource": "awscc_connect_contact_flow", - "identifier": "ContactFlowArn", + "identifier": ["ContactFlowArn"], "path": "./examples/resources/awscc_connect_contact_flow/import.sh" }, { "resource": "awscc_connect_contact_flow_module", - "identifier": "ContactFlowModuleArn", + "identifier": ["ContactFlowModuleArn"], "path": "./examples/resources/awscc_connect_contact_flow_module/import.sh" }, { "resource": "awscc_connect_hours_of_operation", - "identifier": "HoursOfOperationArn", + "identifier": ["HoursOfOperationArn"], "path": "./examples/resources/awscc_connect_hours_of_operation/import.sh" }, { "resource": "awscc_connect_instance", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_connect_instance/import.sh" }, { "resource": "awscc_connect_instance_storage_config", - "identifier": "InstanceArn,AssociationId,ResourceType", + "identifier": ["InstanceArn","AssociationId","ResourceType"], "path": "./examples/resources/awscc_connect_instance_storage_config/import.sh" }, { "resource": "awscc_connect_integration_association", - "identifier": "InstanceId,IntegrationType,IntegrationArn", + "identifier": ["InstanceId","IntegrationType","IntegrationArn"], "path": "./examples/resources/awscc_connect_integration_association/import.sh" }, { "resource": "awscc_connect_phone_number", - "identifier": "PhoneNumberArn", + "identifier": ["PhoneNumberArn"], "path": "./examples/resources/awscc_connect_phone_number/import.sh" }, { "resource": "awscc_connect_predefined_attribute", - "identifier": "InstanceArn,Name", + "identifier": ["InstanceArn","Name"], "path": "./examples/resources/awscc_connect_predefined_attribute/import.sh" }, { "resource": "awscc_connect_prompt", - "identifier": "PromptArn", + "identifier": ["PromptArn"], "path": "./examples/resources/awscc_connect_prompt/import.sh" }, { "resource": "awscc_connect_queue", - "identifier": "QueueArn", + "identifier": ["QueueArn"], "path": "./examples/resources/awscc_connect_queue/import.sh" }, { "resource": "awscc_connect_quick_connect", - "identifier": "QuickConnectArn", + "identifier": ["QuickConnectArn"], "path": "./examples/resources/awscc_connect_quick_connect/import.sh" }, { "resource": "awscc_connect_routing_profile", - "identifier": "RoutingProfileArn", + "identifier": ["RoutingProfileArn"], "path": "./examples/resources/awscc_connect_routing_profile/import.sh" }, { "resource": "awscc_connect_security_key", - "identifier": "InstanceId,AssociationId", + "identifier": ["InstanceId","AssociationId"], "path": "./examples/resources/awscc_connect_security_key/import.sh" }, { "resource": "awscc_connect_security_profile", - "identifier": "SecurityProfileArn", + "identifier": ["SecurityProfileArn"], "path": "./examples/resources/awscc_connect_security_profile/import.sh" }, { "resource": "awscc_connect_task_template", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_connect_task_template/import.sh" }, { "resource": "awscc_connect_traffic_distribution_group", - "identifier": "TrafficDistributionGroupArn", + "identifier": ["TrafficDistributionGroupArn"], "path": "./examples/resources/awscc_connect_traffic_distribution_group/import.sh" }, { "resource": "awscc_connect_user", - "identifier": "UserArn", + "identifier": ["UserArn"], "path": "./examples/resources/awscc_connect_user/import.sh" }, { "resource": "awscc_connect_user_hierarchy_group", - "identifier": "UserHierarchyGroupArn", + "identifier": ["UserHierarchyGroupArn"], "path": "./examples/resources/awscc_connect_user_hierarchy_group/import.sh" }, { "resource": "awscc_connect_view", - "identifier": "ViewArn", + "identifier": ["ViewArn"], "path": "./examples/resources/awscc_connect_view/import.sh" }, { "resource": "awscc_connect_view_version", - "identifier": "ViewVersionArn", + "identifier": ["ViewVersionArn"], "path": "./examples/resources/awscc_connect_view_version/import.sh" }, { "resource": "awscc_connectcampaigns_campaign", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_connectcampaigns_campaign/import.sh" }, { "resource": "awscc_controltower_enabled_control", - "identifier": "TargetIdentifier,ControlIdentifier", + "identifier": ["TargetIdentifier","ControlIdentifier"], "path": "./examples/resources/awscc_controltower_enabled_control/import.sh" }, { "resource": "awscc_customerprofiles_calculated_attribute_definition", - "identifier": "DomainName,CalculatedAttributeName", + "identifier": ["DomainName","CalculatedAttributeName"], "path": "./examples/resources/awscc_customerprofiles_calculated_attribute_definition/import.sh" }, { "resource": "awscc_customerprofiles_domain", - "identifier": "DomainName", + "identifier": ["DomainName"], "path": "./examples/resources/awscc_customerprofiles_domain/import.sh" }, { "resource": "awscc_customerprofiles_event_stream", - "identifier": "DomainName,EventStreamName", + "identifier": ["DomainName","EventStreamName"], "path": "./examples/resources/awscc_customerprofiles_event_stream/import.sh" }, { "resource": "awscc_customerprofiles_integration", - "identifier": "DomainName,Uri", + "identifier": ["DomainName","Uri"], "path": "./examples/resources/awscc_customerprofiles_integration/import.sh" }, { "resource": "awscc_customerprofiles_object_type", - "identifier": "DomainName,ObjectTypeName", + "identifier": ["DomainName","ObjectTypeName"], "path": "./examples/resources/awscc_customerprofiles_object_type/import.sh" }, { "resource": "awscc_dms_data_provider", - "identifier": "DataProviderArn", + "identifier": ["DataProviderArn"], "path": "./examples/resources/awscc_dms_data_provider/import.sh" }, { "resource": "awscc_dms_instance_profile", - "identifier": "InstanceProfileArn", + "identifier": ["InstanceProfileArn"], "path": "./examples/resources/awscc_dms_instance_profile/import.sh" }, { "resource": "awscc_dms_migration_project", - "identifier": "MigrationProjectArn", + "identifier": ["MigrationProjectArn"], "path": "./examples/resources/awscc_dms_migration_project/import.sh" }, { "resource": "awscc_dms_replication_config", - "identifier": "ReplicationConfigArn", + "identifier": ["ReplicationConfigArn"], "path": "./examples/resources/awscc_dms_replication_config/import.sh" }, { "resource": "awscc_databrew_dataset", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_databrew_dataset/import.sh" }, { "resource": "awscc_databrew_job", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_databrew_job/import.sh" }, { "resource": "awscc_databrew_project", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_databrew_project/import.sh" }, { "resource": "awscc_databrew_ruleset", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_databrew_ruleset/import.sh" }, { "resource": "awscc_databrew_schedule", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_databrew_schedule/import.sh" }, { "resource": "awscc_datapipeline_pipeline", - "identifier": "PipelineId", + "identifier": ["PipelineId"], "path": "./examples/resources/awscc_datapipeline_pipeline/import.sh" }, { "resource": "awscc_datasync_agent", - "identifier": "AgentArn", + "identifier": ["AgentArn"], "path": "./examples/resources/awscc_datasync_agent/import.sh" }, { "resource": "awscc_datasync_location_azure_blob", - "identifier": "LocationArn", + "identifier": ["LocationArn"], "path": "./examples/resources/awscc_datasync_location_azure_blob/import.sh" }, { "resource": "awscc_datasync_location_efs", - "identifier": "LocationArn", + "identifier": ["LocationArn"], "path": "./examples/resources/awscc_datasync_location_efs/import.sh" }, { "resource": "awscc_datasync_location_fsx_lustre", - "identifier": "LocationArn", + "identifier": ["LocationArn"], "path": "./examples/resources/awscc_datasync_location_fsx_lustre/import.sh" }, { "resource": "awscc_datasync_location_fsx_ontap", - "identifier": "LocationArn", + "identifier": ["LocationArn"], "path": "./examples/resources/awscc_datasync_location_fsx_ontap/import.sh" }, { "resource": "awscc_datasync_location_fsx_open_zfs", - "identifier": "LocationArn", + "identifier": ["LocationArn"], "path": "./examples/resources/awscc_datasync_location_fsx_open_zfs/import.sh" }, { "resource": "awscc_datasync_location_fsx_windows", - "identifier": "LocationArn", + "identifier": ["LocationArn"], "path": "./examples/resources/awscc_datasync_location_fsx_windows/import.sh" }, { "resource": "awscc_datasync_location_hdfs", - "identifier": "LocationArn", + "identifier": ["LocationArn"], "path": "./examples/resources/awscc_datasync_location_hdfs/import.sh" }, { "resource": "awscc_datasync_location_nfs", - "identifier": "LocationArn", + "identifier": ["LocationArn"], "path": "./examples/resources/awscc_datasync_location_nfs/import.sh" }, { "resource": "awscc_datasync_location_object_storage", - "identifier": "LocationArn", + "identifier": ["LocationArn"], "path": "./examples/resources/awscc_datasync_location_object_storage/import.sh" }, { "resource": "awscc_datasync_location_s3", - "identifier": "LocationArn", + "identifier": ["LocationArn"], "path": "./examples/resources/awscc_datasync_location_s3/import.sh" }, { "resource": "awscc_datasync_location_smb", - "identifier": "LocationArn", + "identifier": ["LocationArn"], "path": "./examples/resources/awscc_datasync_location_smb/import.sh" }, { "resource": "awscc_datasync_storage_system", - "identifier": "StorageSystemArn", + "identifier": ["StorageSystemArn"], "path": "./examples/resources/awscc_datasync_storage_system/import.sh" }, { "resource": "awscc_datasync_task", - "identifier": "TaskArn", + "identifier": ["TaskArn"], "path": "./examples/resources/awscc_datasync_task/import.sh" }, { "resource": "awscc_datazone_data_source", - "identifier": "DomainId,Id", + "identifier": ["DomainId","Id"], "path": "./examples/resources/awscc_datazone_data_source/import.sh" }, { "resource": "awscc_datazone_domain", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_datazone_domain/import.sh" }, { "resource": "awscc_datazone_environment", - "identifier": "DomainId,Id", + "identifier": ["DomainId","Id"], "path": "./examples/resources/awscc_datazone_environment/import.sh" }, { "resource": "awscc_datazone_environment_blueprint_configuration", - "identifier": "DomainId,EnvironmentBlueprintId", + "identifier": ["DomainId","EnvironmentBlueprintId"], "path": "./examples/resources/awscc_datazone_environment_blueprint_configuration/import.sh" }, { "resource": "awscc_datazone_environment_profile", - "identifier": "DomainId,Id", + "identifier": ["DomainId","Id"], "path": "./examples/resources/awscc_datazone_environment_profile/import.sh" }, { "resource": "awscc_datazone_group_profile", - "identifier": "DomainId,Id", + "identifier": ["DomainId","Id"], "path": "./examples/resources/awscc_datazone_group_profile/import.sh" }, { "resource": "awscc_datazone_project", - "identifier": "DomainId,Id", + "identifier": ["DomainId","Id"], "path": "./examples/resources/awscc_datazone_project/import.sh" }, { "resource": "awscc_datazone_project_membership", - "identifier": "DomainIdentifier,MemberIdentifier,MemberIdentifierType,ProjectIdentifier", + "identifier": ["DomainIdentifier","MemberIdentifier","MemberIdentifierType","ProjectIdentifier"], "path": "./examples/resources/awscc_datazone_project_membership/import.sh" }, { "resource": "awscc_datazone_subscription_target", - "identifier": "DomainId,EnvironmentId,Id", + "identifier": ["DomainId","EnvironmentId","Id"], "path": "./examples/resources/awscc_datazone_subscription_target/import.sh" }, { "resource": "awscc_datazone_user_profile", - "identifier": "DomainId,Id", + "identifier": ["DomainId","Id"], "path": "./examples/resources/awscc_datazone_user_profile/import.sh" }, { "resource": "awscc_deadline_farm", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_deadline_farm/import.sh" }, { "resource": "awscc_deadline_fleet", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_deadline_fleet/import.sh" }, { "resource": "awscc_deadline_license_endpoint", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_deadline_license_endpoint/import.sh" }, { "resource": "awscc_deadline_metered_product", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_deadline_metered_product/import.sh" }, { "resource": "awscc_deadline_monitor", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_deadline_monitor/import.sh" }, { "resource": "awscc_deadline_queue", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_deadline_queue/import.sh" }, { "resource": "awscc_deadline_queue_environment", - "identifier": "FarmId,QueueId,QueueEnvironmentId", + "identifier": ["FarmId","QueueId","QueueEnvironmentId"], "path": "./examples/resources/awscc_deadline_queue_environment/import.sh" }, { "resource": "awscc_deadline_queue_fleet_association", - "identifier": "FarmId,FleetId,QueueId", + "identifier": ["FarmId","FleetId","QueueId"], "path": "./examples/resources/awscc_deadline_queue_fleet_association/import.sh" }, { "resource": "awscc_deadline_storage_profile", - "identifier": "FarmId,StorageProfileId", + "identifier": ["FarmId","StorageProfileId"], "path": "./examples/resources/awscc_deadline_storage_profile/import.sh" }, { "resource": "awscc_detective_graph", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_detective_graph/import.sh" }, { "resource": "awscc_detective_member_invitation", - "identifier": "GraphArn,MemberId", + "identifier": ["GraphArn","MemberId"], "path": "./examples/resources/awscc_detective_member_invitation/import.sh" }, { "resource": "awscc_detective_organization_admin", - "identifier": "AccountId", + "identifier": ["AccountId"], "path": "./examples/resources/awscc_detective_organization_admin/import.sh" }, { "resource": "awscc_devopsguru_log_anomaly_detection_integration", - "identifier": "AccountId", + "identifier": ["AccountId"], "path": "./examples/resources/awscc_devopsguru_log_anomaly_detection_integration/import.sh" }, { "resource": "awscc_devopsguru_notification_channel", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_devopsguru_notification_channel/import.sh" }, { "resource": "awscc_devopsguru_resource_collection", - "identifier": "ResourceCollectionType", + "identifier": ["ResourceCollectionType"], "path": "./examples/resources/awscc_devopsguru_resource_collection/import.sh" }, { "resource": "awscc_directoryservice_simple_ad", - "identifier": "DirectoryId", + "identifier": ["DirectoryId"], "path": "./examples/resources/awscc_directoryservice_simple_ad/import.sh" }, { "resource": "awscc_docdbelastic_cluster", - "identifier": "ClusterArn", + "identifier": ["ClusterArn"], "path": "./examples/resources/awscc_docdbelastic_cluster/import.sh" }, { "resource": "awscc_dynamodb_global_table", - "identifier": "TableName", + "identifier": ["TableName"], "path": "./examples/resources/awscc_dynamodb_global_table/import.sh" }, { "resource": "awscc_dynamodb_table", - "identifier": "TableName", + "identifier": ["TableName"], "path": "./examples/resources/awscc_dynamodb_table/import.sh" }, { "resource": "awscc_ec2_capacity_reservation", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_capacity_reservation/import.sh" }, { "resource": "awscc_ec2_capacity_reservation_fleet", - "identifier": "CapacityReservationFleetId", + "identifier": ["CapacityReservationFleetId"], "path": "./examples/resources/awscc_ec2_capacity_reservation_fleet/import.sh" }, { "resource": "awscc_ec2_carrier_gateway", - "identifier": "CarrierGatewayId", + "identifier": ["CarrierGatewayId"], "path": "./examples/resources/awscc_ec2_carrier_gateway/import.sh" }, { "resource": "awscc_ec2_customer_gateway", - "identifier": "CustomerGatewayId", + "identifier": ["CustomerGatewayId"], "path": "./examples/resources/awscc_ec2_customer_gateway/import.sh" }, { "resource": "awscc_ec2_dhcp_options", - "identifier": "DhcpOptionsId", + "identifier": ["DhcpOptionsId"], "path": "./examples/resources/awscc_ec2_dhcp_options/import.sh" }, { "resource": "awscc_ec2_ec2_fleet", - "identifier": "FleetId", + "identifier": ["FleetId"], "path": "./examples/resources/awscc_ec2_ec2_fleet/import.sh" }, { "resource": "awscc_ec2_eip", - "identifier": "PublicIp,AllocationId", + "identifier": ["PublicIp","AllocationId"], "path": "./examples/resources/awscc_ec2_eip/import.sh" }, { "resource": "awscc_ec2_eip_association", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_eip_association/import.sh" }, { "resource": "awscc_ec2_egress_only_internet_gateway", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_egress_only_internet_gateway/import.sh" }, { "resource": "awscc_ec2_enclave_certificate_iam_role_association", - "identifier": "CertificateArn,RoleArn", + "identifier": ["CertificateArn","RoleArn"], "path": "./examples/resources/awscc_ec2_enclave_certificate_iam_role_association/import.sh" }, { "resource": "awscc_ec2_flow_log", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_flow_log/import.sh" }, { "resource": "awscc_ec2_gateway_route_table_association", - "identifier": "GatewayId", + "identifier": ["GatewayId"], "path": "./examples/resources/awscc_ec2_gateway_route_table_association/import.sh" }, { "resource": "awscc_ec2_host", - "identifier": "HostId", + "identifier": ["HostId"], "path": "./examples/resources/awscc_ec2_host/import.sh" }, { "resource": "awscc_ec2_ipam", - "identifier": "IpamId", + "identifier": ["IpamId"], "path": "./examples/resources/awscc_ec2_ipam/import.sh" }, { "resource": "awscc_ec2_ipam_allocation", - "identifier": "IpamPoolId,IpamPoolAllocationId,Cidr", + "identifier": ["IpamPoolId","IpamPoolAllocationId","Cidr"], "path": "./examples/resources/awscc_ec2_ipam_allocation/import.sh" }, { "resource": "awscc_ec2_ipam_pool", - "identifier": "IpamPoolId", + "identifier": ["IpamPoolId"], "path": "./examples/resources/awscc_ec2_ipam_pool/import.sh" }, { "resource": "awscc_ec2_ipam_pool_cidr", - "identifier": "IpamPoolId,IpamPoolCidrId", + "identifier": ["IpamPoolId","IpamPoolCidrId"], "path": "./examples/resources/awscc_ec2_ipam_pool_cidr/import.sh" }, { "resource": "awscc_ec2_ipam_resource_discovery", - "identifier": "IpamResourceDiscoveryId", + "identifier": ["IpamResourceDiscoveryId"], "path": "./examples/resources/awscc_ec2_ipam_resource_discovery/import.sh" }, { "resource": "awscc_ec2_ipam_resource_discovery_association", - "identifier": "IpamResourceDiscoveryAssociationId", + "identifier": ["IpamResourceDiscoveryAssociationId"], "path": "./examples/resources/awscc_ec2_ipam_resource_discovery_association/import.sh" }, { "resource": "awscc_ec2_ipam_scope", - "identifier": "IpamScopeId", + "identifier": ["IpamScopeId"], "path": "./examples/resources/awscc_ec2_ipam_scope/import.sh" }, { "resource": "awscc_ec2_instance", - "identifier": "InstanceId", + "identifier": ["InstanceId"], "path": "./examples/resources/awscc_ec2_instance/import.sh" }, { "resource": "awscc_ec2_instance_connect_endpoint", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_instance_connect_endpoint/import.sh" }, { "resource": "awscc_ec2_internet_gateway", - "identifier": "InternetGatewayId", + "identifier": ["InternetGatewayId"], "path": "./examples/resources/awscc_ec2_internet_gateway/import.sh" }, { "resource": "awscc_ec2_key_pair", - "identifier": "KeyName", + "identifier": ["KeyName"], "path": "./examples/resources/awscc_ec2_key_pair/import.sh" }, { "resource": "awscc_ec2_launch_template", - "identifier": "LaunchTemplateId", + "identifier": ["LaunchTemplateId"], "path": "./examples/resources/awscc_ec2_launch_template/import.sh" }, { "resource": "awscc_ec2_local_gateway_route", - "identifier": "DestinationCidrBlock,LocalGatewayRouteTableId", + "identifier": ["DestinationCidrBlock","LocalGatewayRouteTableId"], "path": "./examples/resources/awscc_ec2_local_gateway_route/import.sh" }, { "resource": "awscc_ec2_local_gateway_route_table", - "identifier": "LocalGatewayRouteTableId", + "identifier": ["LocalGatewayRouteTableId"], "path": "./examples/resources/awscc_ec2_local_gateway_route_table/import.sh" }, { "resource": "awscc_ec2_local_gateway_route_table_vpc_association", - "identifier": "LocalGatewayRouteTableVpcAssociationId", + "identifier": ["LocalGatewayRouteTableVpcAssociationId"], "path": "./examples/resources/awscc_ec2_local_gateway_route_table_vpc_association/import.sh" }, { "resource": "awscc_ec2_local_gateway_route_table_virtual_interface_group_association", - "identifier": "LocalGatewayRouteTableVirtualInterfaceGroupAssociationId", + "identifier": ["LocalGatewayRouteTableVirtualInterfaceGroupAssociationId"], "path": "./examples/resources/awscc_ec2_local_gateway_route_table_virtual_interface_group_association/import.sh" }, { "resource": "awscc_ec2_nat_gateway", - "identifier": "NatGatewayId", + "identifier": ["NatGatewayId"], "path": "./examples/resources/awscc_ec2_nat_gateway/import.sh" }, { "resource": "awscc_ec2_network_acl", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_network_acl/import.sh" }, { "resource": "awscc_ec2_network_insights_access_scope", - "identifier": "NetworkInsightsAccessScopeId", + "identifier": ["NetworkInsightsAccessScopeId"], "path": "./examples/resources/awscc_ec2_network_insights_access_scope/import.sh" }, { "resource": "awscc_ec2_network_insights_access_scope_analysis", - "identifier": "NetworkInsightsAccessScopeAnalysisId", + "identifier": ["NetworkInsightsAccessScopeAnalysisId"], "path": "./examples/resources/awscc_ec2_network_insights_access_scope_analysis/import.sh" }, { "resource": "awscc_ec2_network_insights_analysis", - "identifier": "NetworkInsightsAnalysisId", + "identifier": ["NetworkInsightsAnalysisId"], "path": "./examples/resources/awscc_ec2_network_insights_analysis/import.sh" }, { "resource": "awscc_ec2_network_insights_path", - "identifier": "NetworkInsightsPathId", + "identifier": ["NetworkInsightsPathId"], "path": "./examples/resources/awscc_ec2_network_insights_path/import.sh" }, { "resource": "awscc_ec2_network_interface", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_network_interface/import.sh" }, { "resource": "awscc_ec2_network_interface_attachment", - "identifier": "AttachmentId", + "identifier": ["AttachmentId"], "path": "./examples/resources/awscc_ec2_network_interface_attachment/import.sh" }, { "resource": "awscc_ec2_network_performance_metric_subscription", - "identifier": "Source,Destination,Metric,Statistic", + "identifier": ["Source","Destination","Metric","Statistic"], "path": "./examples/resources/awscc_ec2_network_performance_metric_subscription/import.sh" }, { "resource": "awscc_ec2_placement_group", - "identifier": "GroupName", + "identifier": ["GroupName"], "path": "./examples/resources/awscc_ec2_placement_group/import.sh" }, { "resource": "awscc_ec2_prefix_list", - "identifier": "PrefixListId", + "identifier": ["PrefixListId"], "path": "./examples/resources/awscc_ec2_prefix_list/import.sh" }, { "resource": "awscc_ec2_route", - "identifier": "RouteTableId,CidrBlock", + "identifier": ["RouteTableId","CidrBlock"], "path": "./examples/resources/awscc_ec2_route/import.sh" }, { "resource": "awscc_ec2_route_table", - "identifier": "RouteTableId", + "identifier": ["RouteTableId"], "path": "./examples/resources/awscc_ec2_route_table/import.sh" }, { "resource": "awscc_ec2_security_group", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_security_group/import.sh" }, { "resource": "awscc_ec2_security_group_egress", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_security_group_egress/import.sh" }, { "resource": "awscc_ec2_security_group_ingress", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_security_group_ingress/import.sh" }, { "resource": "awscc_ec2_snapshot_block_public_access", - "identifier": "AccountId", + "identifier": ["AccountId"], "path": "./examples/resources/awscc_ec2_snapshot_block_public_access/import.sh" }, { "resource": "awscc_ec2_spot_fleet", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_spot_fleet/import.sh" }, { "resource": "awscc_ec2_subnet", - "identifier": "SubnetId", + "identifier": ["SubnetId"], "path": "./examples/resources/awscc_ec2_subnet/import.sh" }, { "resource": "awscc_ec2_subnet_cidr_block", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_subnet_cidr_block/import.sh" }, { "resource": "awscc_ec2_subnet_network_acl_association", - "identifier": "AssociationId", + "identifier": ["AssociationId"], "path": "./examples/resources/awscc_ec2_subnet_network_acl_association/import.sh" }, { "resource": "awscc_ec2_subnet_route_table_association", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_subnet_route_table_association/import.sh" }, { "resource": "awscc_ec2_transit_gateway", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_transit_gateway/import.sh" }, { "resource": "awscc_ec2_transit_gateway_attachment", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_transit_gateway_attachment/import.sh" }, { "resource": "awscc_ec2_transit_gateway_connect", - "identifier": "TransitGatewayAttachmentId", + "identifier": ["TransitGatewayAttachmentId"], "path": "./examples/resources/awscc_ec2_transit_gateway_connect/import.sh" }, { "resource": "awscc_ec2_transit_gateway_multicast_domain", - "identifier": "TransitGatewayMulticastDomainId", + "identifier": ["TransitGatewayMulticastDomainId"], "path": "./examples/resources/awscc_ec2_transit_gateway_multicast_domain/import.sh" }, { "resource": "awscc_ec2_transit_gateway_multicast_domain_association", - "identifier": "TransitGatewayMulticastDomainId,TransitGatewayAttachmentId,SubnetId", + "identifier": ["TransitGatewayMulticastDomainId","TransitGatewayAttachmentId","SubnetId"], "path": "./examples/resources/awscc_ec2_transit_gateway_multicast_domain_association/import.sh" }, { "resource": "awscc_ec2_transit_gateway_multicast_group_member", - "identifier": "TransitGatewayMulticastDomainId,GroupIpAddress,NetworkInterfaceId", + "identifier": ["TransitGatewayMulticastDomainId","GroupIpAddress","NetworkInterfaceId"], "path": "./examples/resources/awscc_ec2_transit_gateway_multicast_group_member/import.sh" }, { "resource": "awscc_ec2_transit_gateway_multicast_group_source", - "identifier": "TransitGatewayMulticastDomainId,GroupIpAddress,NetworkInterfaceId", + "identifier": ["TransitGatewayMulticastDomainId","GroupIpAddress","NetworkInterfaceId"], "path": "./examples/resources/awscc_ec2_transit_gateway_multicast_group_source/import.sh" }, { "resource": "awscc_ec2_transit_gateway_peering_attachment", - "identifier": "TransitGatewayAttachmentId", + "identifier": ["TransitGatewayAttachmentId"], "path": "./examples/resources/awscc_ec2_transit_gateway_peering_attachment/import.sh" }, { "resource": "awscc_ec2_transit_gateway_route", - "identifier": "TransitGatewayRouteTableId,DestinationCidrBlock", + "identifier": ["TransitGatewayRouteTableId","DestinationCidrBlock"], "path": "./examples/resources/awscc_ec2_transit_gateway_route/import.sh" }, { "resource": "awscc_ec2_transit_gateway_route_table", - "identifier": "TransitGatewayRouteTableId", + "identifier": ["TransitGatewayRouteTableId"], "path": "./examples/resources/awscc_ec2_transit_gateway_route_table/import.sh" }, { "resource": "awscc_ec2_transit_gateway_route_table_association", - "identifier": "TransitGatewayRouteTableId,TransitGatewayAttachmentId", + "identifier": ["TransitGatewayRouteTableId","TransitGatewayAttachmentId"], "path": "./examples/resources/awscc_ec2_transit_gateway_route_table_association/import.sh" }, { "resource": "awscc_ec2_transit_gateway_route_table_propagation", - "identifier": "TransitGatewayRouteTableId,TransitGatewayAttachmentId", + "identifier": ["TransitGatewayRouteTableId","TransitGatewayAttachmentId"], "path": "./examples/resources/awscc_ec2_transit_gateway_route_table_propagation/import.sh" }, { "resource": "awscc_ec2_transit_gateway_vpc_attachment", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_transit_gateway_vpc_attachment/import.sh" }, { "resource": "awscc_ec2_vpc", - "identifier": "VpcId", + "identifier": ["VpcId"], "path": "./examples/resources/awscc_ec2_vpc/import.sh" }, { "resource": "awscc_ec2_vpc_cidr_block", - "identifier": "Id,VpcId", + "identifier": ["Id","VpcId"], "path": "./examples/resources/awscc_ec2_vpc_cidr_block/import.sh" }, { "resource": "awscc_ec2_vpcdhcp_options_association", - "identifier": "DhcpOptionsId,VpcId", + "identifier": ["DhcpOptionsId","VpcId"], "path": "./examples/resources/awscc_ec2_vpcdhcp_options_association/import.sh" }, { "resource": "awscc_ec2_vpc_endpoint", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_vpc_endpoint/import.sh" }, { "resource": "awscc_ec2_vpc_endpoint_connection_notification", - "identifier": "VPCEndpointConnectionNotificationId", + "identifier": ["VPCEndpointConnectionNotificationId"], "path": "./examples/resources/awscc_ec2_vpc_endpoint_connection_notification/import.sh" }, { "resource": "awscc_ec2_vpc_endpoint_service", - "identifier": "ServiceId", + "identifier": ["ServiceId"], "path": "./examples/resources/awscc_ec2_vpc_endpoint_service/import.sh" }, { "resource": "awscc_ec2_vpc_endpoint_service_permissions", - "identifier": "ServiceId", + "identifier": ["ServiceId"], "path": "./examples/resources/awscc_ec2_vpc_endpoint_service_permissions/import.sh" }, { "resource": "awscc_ec2_vpc_gateway_attachment", - "identifier": "AttachmentType,VpcId", + "identifier": ["AttachmentType","VpcId"], "path": "./examples/resources/awscc_ec2_vpc_gateway_attachment/import.sh" }, { "resource": "awscc_ec2_vpc_peering_connection", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ec2_vpc_peering_connection/import.sh" }, { "resource": "awscc_ec2_vpn_connection", - "identifier": "VpnConnectionId", + "identifier": ["VpnConnectionId"], "path": "./examples/resources/awscc_ec2_vpn_connection/import.sh" }, { "resource": "awscc_ec2_vpn_connection_route", - "identifier": "DestinationCidrBlock,VpnConnectionId", + "identifier": ["DestinationCidrBlock","VpnConnectionId"], "path": "./examples/resources/awscc_ec2_vpn_connection_route/import.sh" }, { "resource": "awscc_ec2_vpn_gateway", - "identifier": "VPNGatewayId", + "identifier": ["VPNGatewayId"], "path": "./examples/resources/awscc_ec2_vpn_gateway/import.sh" }, { "resource": "awscc_ec2_verified_access_endpoint", - "identifier": "VerifiedAccessEndpointId", + "identifier": ["VerifiedAccessEndpointId"], "path": "./examples/resources/awscc_ec2_verified_access_endpoint/import.sh" }, { "resource": "awscc_ec2_verified_access_group", - "identifier": "VerifiedAccessGroupId", + "identifier": ["VerifiedAccessGroupId"], "path": "./examples/resources/awscc_ec2_verified_access_group/import.sh" }, { "resource": "awscc_ec2_verified_access_instance", - "identifier": "VerifiedAccessInstanceId", + "identifier": ["VerifiedAccessInstanceId"], "path": "./examples/resources/awscc_ec2_verified_access_instance/import.sh" }, { "resource": "awscc_ec2_verified_access_trust_provider", - "identifier": "VerifiedAccessTrustProviderId", + "identifier": ["VerifiedAccessTrustProviderId"], "path": "./examples/resources/awscc_ec2_verified_access_trust_provider/import.sh" }, { "resource": "awscc_ec2_volume", - "identifier": "VolumeId", + "identifier": ["VolumeId"], "path": "./examples/resources/awscc_ec2_volume/import.sh" }, { "resource": "awscc_ec2_volume_attachment", - "identifier": "VolumeId,InstanceId", + "identifier": ["VolumeId","InstanceId"], "path": "./examples/resources/awscc_ec2_volume_attachment/import.sh" }, { "resource": "awscc_ecr_public_repository", - "identifier": "RepositoryName", + "identifier": ["RepositoryName"], "path": "./examples/resources/awscc_ecr_public_repository/import.sh" }, { "resource": "awscc_ecr_pull_through_cache_rule", - "identifier": "EcrRepositoryPrefix", + "identifier": ["EcrRepositoryPrefix"], "path": "./examples/resources/awscc_ecr_pull_through_cache_rule/import.sh" }, { "resource": "awscc_ecr_registry_policy", - "identifier": "RegistryId", + "identifier": ["RegistryId"], "path": "./examples/resources/awscc_ecr_registry_policy/import.sh" }, { "resource": "awscc_ecr_replication_configuration", - "identifier": "RegistryId", + "identifier": ["RegistryId"], "path": "./examples/resources/awscc_ecr_replication_configuration/import.sh" }, { "resource": "awscc_ecr_repository", - "identifier": "RepositoryName", + "identifier": ["RepositoryName"], "path": "./examples/resources/awscc_ecr_repository/import.sh" }, { "resource": "awscc_ecr_repository_creation_template", - "identifier": "Prefix", + "identifier": ["Prefix"], "path": "./examples/resources/awscc_ecr_repository_creation_template/import.sh" }, { "resource": "awscc_ecs_capacity_provider", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_ecs_capacity_provider/import.sh" }, { "resource": "awscc_ecs_cluster", - "identifier": "ClusterName", + "identifier": ["ClusterName"], "path": "./examples/resources/awscc_ecs_cluster/import.sh" }, { "resource": "awscc_ecs_cluster_capacity_provider_associations", - "identifier": "Cluster", + "identifier": ["Cluster"], "path": "./examples/resources/awscc_ecs_cluster_capacity_provider_associations/import.sh" }, { "resource": "awscc_ecs_primary_task_set", - "identifier": "Cluster,Service", + "identifier": ["Cluster","Service"], "path": "./examples/resources/awscc_ecs_primary_task_set/import.sh" }, { "resource": "awscc_ecs_service", - "identifier": "ServiceArn,Cluster", + "identifier": ["ServiceArn","Cluster"], "path": "./examples/resources/awscc_ecs_service/import.sh" }, { "resource": "awscc_ecs_task_definition", - "identifier": "TaskDefinitionArn", + "identifier": ["TaskDefinitionArn"], "path": "./examples/resources/awscc_ecs_task_definition/import.sh" }, { "resource": "awscc_ecs_task_set", - "identifier": "Cluster,Service,Id", + "identifier": ["Cluster","Service","Id"], "path": "./examples/resources/awscc_ecs_task_set/import.sh" }, { "resource": "awscc_efs_access_point", - "identifier": "AccessPointId", + "identifier": ["AccessPointId"], "path": "./examples/resources/awscc_efs_access_point/import.sh" }, { "resource": "awscc_efs_file_system", - "identifier": "FileSystemId", + "identifier": ["FileSystemId"], "path": "./examples/resources/awscc_efs_file_system/import.sh" }, { "resource": "awscc_efs_mount_target", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_efs_mount_target/import.sh" }, { "resource": "awscc_eks_access_entry", - "identifier": "PrincipalArn,ClusterName", + "identifier": ["PrincipalArn","ClusterName"], "path": "./examples/resources/awscc_eks_access_entry/import.sh" }, { "resource": "awscc_eks_addon", - "identifier": "ClusterName,AddonName", + "identifier": ["ClusterName","AddonName"], "path": "./examples/resources/awscc_eks_addon/import.sh" }, { "resource": "awscc_eks_cluster", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_eks_cluster/import.sh" }, { "resource": "awscc_eks_fargate_profile", - "identifier": "ClusterName,FargateProfileName", + "identifier": ["ClusterName","FargateProfileName"], "path": "./examples/resources/awscc_eks_fargate_profile/import.sh" }, { "resource": "awscc_eks_identity_provider_config", - "identifier": "IdentityProviderConfigName,ClusterName,Type", + "identifier": ["IdentityProviderConfigName","ClusterName","Type"], "path": "./examples/resources/awscc_eks_identity_provider_config/import.sh" }, { "resource": "awscc_eks_nodegroup", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_eks_nodegroup/import.sh" }, { "resource": "awscc_eks_pod_identity_association", - "identifier": "AssociationArn", + "identifier": ["AssociationArn"], "path": "./examples/resources/awscc_eks_pod_identity_association/import.sh" }, { "resource": "awscc_emr_security_configuration", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_emr_security_configuration/import.sh" }, { "resource": "awscc_emr_studio", - "identifier": "StudioId", + "identifier": ["StudioId"], "path": "./examples/resources/awscc_emr_studio/import.sh" }, { "resource": "awscc_emr_studio_session_mapping", - "identifier": "StudioId,IdentityType,IdentityName", + "identifier": ["StudioId","IdentityType","IdentityName"], "path": "./examples/resources/awscc_emr_studio_session_mapping/import.sh" }, { "resource": "awscc_emr_wal_workspace", - "identifier": "WALWorkspaceName", + "identifier": ["WALWorkspaceName"], "path": "./examples/resources/awscc_emr_wal_workspace/import.sh" }, { "resource": "awscc_emrcontainers_virtual_cluster", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_emrcontainers_virtual_cluster/import.sh" }, { "resource": "awscc_emrserverless_application", - "identifier": "ApplicationId", + "identifier": ["ApplicationId"], "path": "./examples/resources/awscc_emrserverless_application/import.sh" }, { "resource": "awscc_elasticache_global_replication_group", - "identifier": "GlobalReplicationGroupId", + "identifier": ["GlobalReplicationGroupId"], "path": "./examples/resources/awscc_elasticache_global_replication_group/import.sh" }, { "resource": "awscc_elasticache_parameter_group", - "identifier": "CacheParameterGroupName", + "identifier": ["CacheParameterGroupName"], "path": "./examples/resources/awscc_elasticache_parameter_group/import.sh" }, { "resource": "awscc_elasticache_serverless_cache", - "identifier": "ServerlessCacheName", + "identifier": ["ServerlessCacheName"], "path": "./examples/resources/awscc_elasticache_serverless_cache/import.sh" }, { "resource": "awscc_elasticache_subnet_group", - "identifier": "CacheSubnetGroupName", + "identifier": ["CacheSubnetGroupName"], "path": "./examples/resources/awscc_elasticache_subnet_group/import.sh" }, { "resource": "awscc_elasticache_user", - "identifier": "UserId", + "identifier": ["UserId"], "path": "./examples/resources/awscc_elasticache_user/import.sh" }, { "resource": "awscc_elasticache_user_group", - "identifier": "UserGroupId", + "identifier": ["UserGroupId"], "path": "./examples/resources/awscc_elasticache_user_group/import.sh" }, { "resource": "awscc_elasticbeanstalk_application", - "identifier": "ApplicationName", + "identifier": ["ApplicationName"], "path": "./examples/resources/awscc_elasticbeanstalk_application/import.sh" }, { "resource": "awscc_elasticbeanstalk_application_version", - "identifier": "ApplicationName,Id", + "identifier": ["ApplicationName","Id"], "path": "./examples/resources/awscc_elasticbeanstalk_application_version/import.sh" }, { "resource": "awscc_elasticbeanstalk_configuration_template", - "identifier": "ApplicationName,TemplateName", + "identifier": ["ApplicationName","TemplateName"], "path": "./examples/resources/awscc_elasticbeanstalk_configuration_template/import.sh" }, { "resource": "awscc_elasticbeanstalk_environment", - "identifier": "EnvironmentName", + "identifier": ["EnvironmentName"], "path": "./examples/resources/awscc_elasticbeanstalk_environment/import.sh" }, { "resource": "awscc_elasticloadbalancingv2_load_balancer", - "identifier": "LoadBalancerArn", + "identifier": ["LoadBalancerArn"], "path": "./examples/resources/awscc_elasticloadbalancingv2_load_balancer/import.sh" }, { "resource": "awscc_elasticloadbalancingv2_target_group", - "identifier": "TargetGroupArn", + "identifier": ["TargetGroupArn"], "path": "./examples/resources/awscc_elasticloadbalancingv2_target_group/import.sh" }, { "resource": "awscc_elasticloadbalancingv2_trust_store", - "identifier": "TrustStoreArn", + "identifier": ["TrustStoreArn"], "path": "./examples/resources/awscc_elasticloadbalancingv2_trust_store/import.sh" }, { "resource": "awscc_elasticloadbalancingv2_trust_store_revocation", - "identifier": "RevocationId,TrustStoreArn", + "identifier": ["RevocationId","TrustStoreArn"], "path": "./examples/resources/awscc_elasticloadbalancingv2_trust_store_revocation/import.sh" }, { "resource": "awscc_entityresolution_id_mapping_workflow", - "identifier": "WorkflowName", + "identifier": ["WorkflowName"], "path": "./examples/resources/awscc_entityresolution_id_mapping_workflow/import.sh" }, { "resource": "awscc_entityresolution_id_namespace", - "identifier": "IdNamespaceName", + "identifier": ["IdNamespaceName"], "path": "./examples/resources/awscc_entityresolution_id_namespace/import.sh" }, { "resource": "awscc_entityresolution_matching_workflow", - "identifier": "WorkflowName", + "identifier": ["WorkflowName"], "path": "./examples/resources/awscc_entityresolution_matching_workflow/import.sh" }, { "resource": "awscc_entityresolution_policy_statement", - "identifier": "Arn,StatementId", + "identifier": ["Arn","StatementId"], "path": "./examples/resources/awscc_entityresolution_policy_statement/import.sh" }, { "resource": "awscc_entityresolution_schema_mapping", - "identifier": "SchemaName", + "identifier": ["SchemaName"], "path": "./examples/resources/awscc_entityresolution_schema_mapping/import.sh" }, { "resource": "awscc_eventschemas_discoverer", - "identifier": "DiscovererArn", + "identifier": ["DiscovererArn"], "path": "./examples/resources/awscc_eventschemas_discoverer/import.sh" }, { "resource": "awscc_eventschemas_registry", - "identifier": "RegistryArn", + "identifier": ["RegistryArn"], "path": "./examples/resources/awscc_eventschemas_registry/import.sh" }, { "resource": "awscc_eventschemas_registry_policy", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_eventschemas_registry_policy/import.sh" }, { "resource": "awscc_eventschemas_schema", - "identifier": "SchemaArn", + "identifier": ["SchemaArn"], "path": "./examples/resources/awscc_eventschemas_schema/import.sh" }, { "resource": "awscc_events_api_destination", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_events_api_destination/import.sh" }, { "resource": "awscc_events_archive", - "identifier": "ArchiveName", + "identifier": ["ArchiveName"], "path": "./examples/resources/awscc_events_archive/import.sh" }, { "resource": "awscc_events_endpoint", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_events_endpoint/import.sh" }, { "resource": "awscc_events_event_bus", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_events_event_bus/import.sh" }, { "resource": "awscc_events_rule", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_events_rule/import.sh" }, { "resource": "awscc_evidently_experiment", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_evidently_experiment/import.sh" }, { "resource": "awscc_evidently_feature", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_evidently_feature/import.sh" }, { "resource": "awscc_evidently_launch", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_evidently_launch/import.sh" }, { "resource": "awscc_evidently_project", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_evidently_project/import.sh" }, { "resource": "awscc_evidently_segment", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_evidently_segment/import.sh" }, { "resource": "awscc_fis_experiment_template", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_fis_experiment_template/import.sh" }, { "resource": "awscc_fis_target_account_configuration", - "identifier": "ExperimentTemplateId,AccountId", + "identifier": ["ExperimentTemplateId","AccountId"], "path": "./examples/resources/awscc_fis_target_account_configuration/import.sh" }, { "resource": "awscc_fms_notification_channel", - "identifier": "SnsTopicArn", + "identifier": ["SnsTopicArn"], "path": "./examples/resources/awscc_fms_notification_channel/import.sh" }, { "resource": "awscc_fms_policy", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_fms_policy/import.sh" }, { "resource": "awscc_fms_resource_set", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_fms_resource_set/import.sh" }, { "resource": "awscc_fsx_data_repository_association", - "identifier": "AssociationId", + "identifier": ["AssociationId"], "path": "./examples/resources/awscc_fsx_data_repository_association/import.sh" }, { "resource": "awscc_finspace_environment", - "identifier": "EnvironmentId", + "identifier": ["EnvironmentId"], "path": "./examples/resources/awscc_finspace_environment/import.sh" }, { "resource": "awscc_forecast_dataset", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_forecast_dataset/import.sh" }, { "resource": "awscc_forecast_dataset_group", - "identifier": "DatasetGroupArn", + "identifier": ["DatasetGroupArn"], "path": "./examples/resources/awscc_forecast_dataset_group/import.sh" }, { "resource": "awscc_frauddetector_detector", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_frauddetector_detector/import.sh" }, { "resource": "awscc_frauddetector_entity_type", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_frauddetector_entity_type/import.sh" }, { "resource": "awscc_frauddetector_event_type", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_frauddetector_event_type/import.sh" }, { "resource": "awscc_frauddetector_label", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_frauddetector_label/import.sh" }, { "resource": "awscc_frauddetector_list", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_frauddetector_list/import.sh" }, { "resource": "awscc_frauddetector_outcome", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_frauddetector_outcome/import.sh" }, { "resource": "awscc_frauddetector_variable", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_frauddetector_variable/import.sh" }, { "resource": "awscc_gamelift_alias", - "identifier": "AliasId", + "identifier": ["AliasId"], "path": "./examples/resources/awscc_gamelift_alias/import.sh" }, { "resource": "awscc_gamelift_build", - "identifier": "BuildId", + "identifier": ["BuildId"], "path": "./examples/resources/awscc_gamelift_build/import.sh" }, { "resource": "awscc_gamelift_container_group_definition", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_gamelift_container_group_definition/import.sh" }, { "resource": "awscc_gamelift_fleet", - "identifier": "FleetId", + "identifier": ["FleetId"], "path": "./examples/resources/awscc_gamelift_fleet/import.sh" }, { "resource": "awscc_gamelift_game_server_group", - "identifier": "GameServerGroupArn", + "identifier": ["GameServerGroupArn"], "path": "./examples/resources/awscc_gamelift_game_server_group/import.sh" }, { "resource": "awscc_gamelift_game_session_queue", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_gamelift_game_session_queue/import.sh" }, { "resource": "awscc_gamelift_location", - "identifier": "LocationName", + "identifier": ["LocationName"], "path": "./examples/resources/awscc_gamelift_location/import.sh" }, { "resource": "awscc_gamelift_matchmaking_configuration", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_gamelift_matchmaking_configuration/import.sh" }, { "resource": "awscc_gamelift_matchmaking_rule_set", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_gamelift_matchmaking_rule_set/import.sh" }, { "resource": "awscc_gamelift_script", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_gamelift_script/import.sh" }, { "resource": "awscc_globalaccelerator_accelerator", - "identifier": "AcceleratorArn", + "identifier": ["AcceleratorArn"], "path": "./examples/resources/awscc_globalaccelerator_accelerator/import.sh" }, { "resource": "awscc_globalaccelerator_cross_account_attachment", - "identifier": "AttachmentArn", + "identifier": ["AttachmentArn"], "path": "./examples/resources/awscc_globalaccelerator_cross_account_attachment/import.sh" }, { "resource": "awscc_globalaccelerator_endpoint_group", - "identifier": "EndpointGroupArn", + "identifier": ["EndpointGroupArn"], "path": "./examples/resources/awscc_globalaccelerator_endpoint_group/import.sh" }, { "resource": "awscc_globalaccelerator_listener", - "identifier": "ListenerArn", + "identifier": ["ListenerArn"], "path": "./examples/resources/awscc_globalaccelerator_listener/import.sh" }, { "resource": "awscc_glue_database", - "identifier": "DatabaseName", + "identifier": ["DatabaseName"], "path": "./examples/resources/awscc_glue_database/import.sh" }, { "resource": "awscc_glue_registry", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_glue_registry/import.sh" }, { "resource": "awscc_glue_schema", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_glue_schema/import.sh" }, { "resource": "awscc_glue_schema_version", - "identifier": "VersionId", + "identifier": ["VersionId"], "path": "./examples/resources/awscc_glue_schema_version/import.sh" }, { "resource": "awscc_glue_schema_version_metadata", - "identifier": "SchemaVersionId,Key,Value", + "identifier": ["SchemaVersionId","Key","Value"], "path": "./examples/resources/awscc_glue_schema_version_metadata/import.sh" }, { "resource": "awscc_glue_trigger", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_glue_trigger/import.sh" }, { "resource": "awscc_grafana_workspace", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_grafana_workspace/import.sh" }, { "resource": "awscc_greengrassv2_component_version", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_greengrassv2_component_version/import.sh" }, { "resource": "awscc_greengrassv2_deployment", - "identifier": "DeploymentId", + "identifier": ["DeploymentId"], "path": "./examples/resources/awscc_greengrassv2_deployment/import.sh" }, { "resource": "awscc_groundstation_config", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_groundstation_config/import.sh" }, { "resource": "awscc_groundstation_dataflow_endpoint_group", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_groundstation_dataflow_endpoint_group/import.sh" }, { "resource": "awscc_groundstation_mission_profile", - "identifier": "Id,Arn", + "identifier": ["Id","Arn"], "path": "./examples/resources/awscc_groundstation_mission_profile/import.sh" }, { "resource": "awscc_guardduty_detector", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_guardduty_detector/import.sh" }, { "resource": "awscc_guardduty_filter", - "identifier": "DetectorId,Name", + "identifier": ["DetectorId","Name"], "path": "./examples/resources/awscc_guardduty_filter/import.sh" }, { "resource": "awscc_guardduty_ip_set", - "identifier": "Id,DetectorId", + "identifier": ["Id","DetectorId"], "path": "./examples/resources/awscc_guardduty_ip_set/import.sh" }, { "resource": "awscc_guardduty_malware_protection_plan", - "identifier": "MalwareProtectionPlanId", + "identifier": ["MalwareProtectionPlanId"], "path": "./examples/resources/awscc_guardduty_malware_protection_plan/import.sh" }, { "resource": "awscc_guardduty_master", - "identifier": "DetectorId,MasterId", + "identifier": ["DetectorId","MasterId"], "path": "./examples/resources/awscc_guardduty_master/import.sh" }, { "resource": "awscc_guardduty_member", - "identifier": "DetectorId,MemberId", + "identifier": ["DetectorId","MemberId"], "path": "./examples/resources/awscc_guardduty_member/import.sh" }, { "resource": "awscc_guardduty_threat_intel_set", - "identifier": "Id,DetectorId", + "identifier": ["Id","DetectorId"], "path": "./examples/resources/awscc_guardduty_threat_intel_set/import.sh" }, { "resource": "awscc_healthimaging_datastore", - "identifier": "DatastoreId", + "identifier": ["DatastoreId"], "path": "./examples/resources/awscc_healthimaging_datastore/import.sh" }, { "resource": "awscc_healthlake_fhir_datastore", - "identifier": "DatastoreId", + "identifier": ["DatastoreId"], "path": "./examples/resources/awscc_healthlake_fhir_datastore/import.sh" }, { "resource": "awscc_iam_group", - "identifier": "GroupName", + "identifier": ["GroupName"], "path": "./examples/resources/awscc_iam_group/import.sh" }, { "resource": "awscc_iam_group_policy", - "identifier": "PolicyName,GroupName", + "identifier": ["PolicyName","GroupName"], "path": "./examples/resources/awscc_iam_group_policy/import.sh" }, { "resource": "awscc_iam_instance_profile", - "identifier": "InstanceProfileName", + "identifier": ["InstanceProfileName"], "path": "./examples/resources/awscc_iam_instance_profile/import.sh" }, { "resource": "awscc_iam_managed_policy", - "identifier": "PolicyArn", + "identifier": ["PolicyArn"], "path": "./examples/resources/awscc_iam_managed_policy/import.sh" }, { "resource": "awscc_iam_oidc_provider", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_iam_oidc_provider/import.sh" }, { "resource": "awscc_iam_role", - "identifier": "RoleName", + "identifier": ["RoleName"], "path": "./examples/resources/awscc_iam_role/import.sh" }, { "resource": "awscc_iam_role_policy", - "identifier": "PolicyName,RoleName", + "identifier": ["PolicyName","RoleName"], "path": "./examples/resources/awscc_iam_role_policy/import.sh" }, { "resource": "awscc_iam_saml_provider", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_iam_saml_provider/import.sh" }, { "resource": "awscc_iam_server_certificate", - "identifier": "ServerCertificateName", + "identifier": ["ServerCertificateName"], "path": "./examples/resources/awscc_iam_server_certificate/import.sh" }, { "resource": "awscc_iam_service_linked_role", - "identifier": "RoleName", + "identifier": ["RoleName"], "path": "./examples/resources/awscc_iam_service_linked_role/import.sh" }, { "resource": "awscc_iam_user", - "identifier": "UserName", + "identifier": ["UserName"], "path": "./examples/resources/awscc_iam_user/import.sh" }, { "resource": "awscc_iam_user_policy", - "identifier": "PolicyName,UserName", + "identifier": ["PolicyName","UserName"], "path": "./examples/resources/awscc_iam_user_policy/import.sh" }, { "resource": "awscc_iam_virtual_mfa_device", - "identifier": "SerialNumber", + "identifier": ["SerialNumber"], "path": "./examples/resources/awscc_iam_virtual_mfa_device/import.sh" }, { "resource": "awscc_ivs_channel", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ivs_channel/import.sh" }, { "resource": "awscc_ivs_encoder_configuration", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ivs_encoder_configuration/import.sh" }, { "resource": "awscc_ivs_playback_key_pair", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ivs_playback_key_pair/import.sh" }, { "resource": "awscc_ivs_playback_restriction_policy", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ivs_playback_restriction_policy/import.sh" }, { "resource": "awscc_ivs_public_key", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ivs_public_key/import.sh" }, { "resource": "awscc_ivs_recording_configuration", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ivs_recording_configuration/import.sh" }, { "resource": "awscc_ivs_stage", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ivs_stage/import.sh" }, { "resource": "awscc_ivs_storage_configuration", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ivs_storage_configuration/import.sh" }, { "resource": "awscc_ivs_stream_key", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ivs_stream_key/import.sh" }, { "resource": "awscc_ivschat_logging_configuration", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ivschat_logging_configuration/import.sh" }, { "resource": "awscc_ivschat_room", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ivschat_room/import.sh" }, { "resource": "awscc_identitystore_group", - "identifier": "GroupId,IdentityStoreId", + "identifier": ["GroupId","IdentityStoreId"], "path": "./examples/resources/awscc_identitystore_group/import.sh" }, { "resource": "awscc_identitystore_group_membership", - "identifier": "MembershipId,IdentityStoreId", + "identifier": ["MembershipId","IdentityStoreId"], "path": "./examples/resources/awscc_identitystore_group_membership/import.sh" }, { "resource": "awscc_imagebuilder_component", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_imagebuilder_component/import.sh" }, { "resource": "awscc_imagebuilder_container_recipe", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_imagebuilder_container_recipe/import.sh" }, { "resource": "awscc_imagebuilder_distribution_configuration", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_imagebuilder_distribution_configuration/import.sh" }, { "resource": "awscc_imagebuilder_image", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_imagebuilder_image/import.sh" }, { "resource": "awscc_imagebuilder_image_pipeline", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_imagebuilder_image_pipeline/import.sh" }, { "resource": "awscc_imagebuilder_image_recipe", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_imagebuilder_image_recipe/import.sh" }, { "resource": "awscc_imagebuilder_infrastructure_configuration", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_imagebuilder_infrastructure_configuration/import.sh" }, { "resource": "awscc_imagebuilder_lifecycle_policy", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_imagebuilder_lifecycle_policy/import.sh" }, { "resource": "awscc_imagebuilder_workflow", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_imagebuilder_workflow/import.sh" }, { "resource": "awscc_inspector_assessment_target", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_inspector_assessment_target/import.sh" }, { "resource": "awscc_inspector_assessment_template", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_inspector_assessment_template/import.sh" }, { "resource": "awscc_inspector_resource_group", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_inspector_resource_group/import.sh" }, { "resource": "awscc_inspectorv2_cis_scan_configuration", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_inspectorv2_cis_scan_configuration/import.sh" }, { "resource": "awscc_inspectorv2_filter", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_inspectorv2_filter/import.sh" }, { "resource": "awscc_internetmonitor_monitor", - "identifier": "MonitorName", + "identifier": ["MonitorName"], "path": "./examples/resources/awscc_internetmonitor_monitor/import.sh" }, { "resource": "awscc_iot_account_audit_configuration", - "identifier": "AccountId", + "identifier": ["AccountId"], "path": "./examples/resources/awscc_iot_account_audit_configuration/import.sh" }, { "resource": "awscc_iot_authorizer", - "identifier": "AuthorizerName", + "identifier": ["AuthorizerName"], "path": "./examples/resources/awscc_iot_authorizer/import.sh" }, { "resource": "awscc_iot_billing_group", - "identifier": "BillingGroupName", + "identifier": ["BillingGroupName"], "path": "./examples/resources/awscc_iot_billing_group/import.sh" }, { "resource": "awscc_iot_ca_certificate", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_iot_ca_certificate/import.sh" }, { "resource": "awscc_iot_certificate", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_iot_certificate/import.sh" }, { "resource": "awscc_iot_certificate_provider", - "identifier": "CertificateProviderName", + "identifier": ["CertificateProviderName"], "path": "./examples/resources/awscc_iot_certificate_provider/import.sh" }, { "resource": "awscc_iot_custom_metric", - "identifier": "MetricName", + "identifier": ["MetricName"], "path": "./examples/resources/awscc_iot_custom_metric/import.sh" }, { "resource": "awscc_iot_dimension", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_iot_dimension/import.sh" }, { "resource": "awscc_iot_domain_configuration", - "identifier": "DomainConfigurationName", + "identifier": ["DomainConfigurationName"], "path": "./examples/resources/awscc_iot_domain_configuration/import.sh" }, { "resource": "awscc_iot_fleet_metric", - "identifier": "MetricName", + "identifier": ["MetricName"], "path": "./examples/resources/awscc_iot_fleet_metric/import.sh" }, { "resource": "awscc_iot_job_template", - "identifier": "JobTemplateId", + "identifier": ["JobTemplateId"], "path": "./examples/resources/awscc_iot_job_template/import.sh" }, { "resource": "awscc_iot_logging", - "identifier": "AccountId", + "identifier": ["AccountId"], "path": "./examples/resources/awscc_iot_logging/import.sh" }, { "resource": "awscc_iot_mitigation_action", - "identifier": "ActionName", + "identifier": ["ActionName"], "path": "./examples/resources/awscc_iot_mitigation_action/import.sh" }, { "resource": "awscc_iot_policy", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_iot_policy/import.sh" }, { "resource": "awscc_iot_provisioning_template", - "identifier": "TemplateName", + "identifier": ["TemplateName"], "path": "./examples/resources/awscc_iot_provisioning_template/import.sh" }, { "resource": "awscc_iot_resource_specific_logging", - "identifier": "TargetId", + "identifier": ["TargetId"], "path": "./examples/resources/awscc_iot_resource_specific_logging/import.sh" }, { "resource": "awscc_iot_role_alias", - "identifier": "RoleAlias", + "identifier": ["RoleAlias"], "path": "./examples/resources/awscc_iot_role_alias/import.sh" }, { "resource": "awscc_iot_scheduled_audit", - "identifier": "ScheduledAuditName", + "identifier": ["ScheduledAuditName"], "path": "./examples/resources/awscc_iot_scheduled_audit/import.sh" }, { "resource": "awscc_iot_security_profile", - "identifier": "SecurityProfileName", + "identifier": ["SecurityProfileName"], "path": "./examples/resources/awscc_iot_security_profile/import.sh" }, { "resource": "awscc_iot_software_package", - "identifier": "PackageName", + "identifier": ["PackageName"], "path": "./examples/resources/awscc_iot_software_package/import.sh" }, { "resource": "awscc_iot_software_package_version", - "identifier": "PackageName,VersionName", + "identifier": ["PackageName","VersionName"], "path": "./examples/resources/awscc_iot_software_package_version/import.sh" }, { "resource": "awscc_iot_thing", - "identifier": "ThingName", + "identifier": ["ThingName"], "path": "./examples/resources/awscc_iot_thing/import.sh" }, { "resource": "awscc_iot_thing_group", - "identifier": "ThingGroupName", + "identifier": ["ThingGroupName"], "path": "./examples/resources/awscc_iot_thing_group/import.sh" }, { "resource": "awscc_iot_thing_type", - "identifier": "ThingTypeName", + "identifier": ["ThingTypeName"], "path": "./examples/resources/awscc_iot_thing_type/import.sh" }, { "resource": "awscc_iot_topic_rule", - "identifier": "RuleName", + "identifier": ["RuleName"], "path": "./examples/resources/awscc_iot_topic_rule/import.sh" }, { "resource": "awscc_iot_topic_rule_destination", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_iot_topic_rule_destination/import.sh" }, { "resource": "awscc_iotanalytics_channel", - "identifier": "ChannelName", + "identifier": ["ChannelName"], "path": "./examples/resources/awscc_iotanalytics_channel/import.sh" }, { "resource": "awscc_iotanalytics_dataset", - "identifier": "DatasetName", + "identifier": ["DatasetName"], "path": "./examples/resources/awscc_iotanalytics_dataset/import.sh" }, { "resource": "awscc_iotanalytics_datastore", - "identifier": "DatastoreName", + "identifier": ["DatastoreName"], "path": "./examples/resources/awscc_iotanalytics_datastore/import.sh" }, { "resource": "awscc_iotanalytics_pipeline", - "identifier": "PipelineName", + "identifier": ["PipelineName"], "path": "./examples/resources/awscc_iotanalytics_pipeline/import.sh" }, { "resource": "awscc_iotcoredeviceadvisor_suite_definition", - "identifier": "SuiteDefinitionId", + "identifier": ["SuiteDefinitionId"], "path": "./examples/resources/awscc_iotcoredeviceadvisor_suite_definition/import.sh" }, { "resource": "awscc_iotevents_alarm_model", - "identifier": "AlarmModelName", + "identifier": ["AlarmModelName"], "path": "./examples/resources/awscc_iotevents_alarm_model/import.sh" }, { "resource": "awscc_iotevents_detector_model", - "identifier": "DetectorModelName", + "identifier": ["DetectorModelName"], "path": "./examples/resources/awscc_iotevents_detector_model/import.sh" }, { "resource": "awscc_iotevents_input", - "identifier": "InputName", + "identifier": ["InputName"], "path": "./examples/resources/awscc_iotevents_input/import.sh" }, { "resource": "awscc_iotfleethub_application", - "identifier": "ApplicationId", + "identifier": ["ApplicationId"], "path": "./examples/resources/awscc_iotfleethub_application/import.sh" }, { "resource": "awscc_iotfleetwise_campaign", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_iotfleetwise_campaign/import.sh" }, { "resource": "awscc_iotfleetwise_fleet", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_iotfleetwise_fleet/import.sh" }, { "resource": "awscc_iotfleetwise_model_manifest", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_iotfleetwise_model_manifest/import.sh" }, { "resource": "awscc_iotfleetwise_signal_catalog", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_iotfleetwise_signal_catalog/import.sh" }, { "resource": "awscc_iotfleetwise_vehicle", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_iotfleetwise_vehicle/import.sh" }, { "resource": "awscc_iotsitewise_access_policy", - "identifier": "AccessPolicyId", + "identifier": ["AccessPolicyId"], "path": "./examples/resources/awscc_iotsitewise_access_policy/import.sh" }, { "resource": "awscc_iotsitewise_asset", - "identifier": "AssetId", + "identifier": ["AssetId"], "path": "./examples/resources/awscc_iotsitewise_asset/import.sh" }, { "resource": "awscc_iotsitewise_asset_model", - "identifier": "AssetModelId", + "identifier": ["AssetModelId"], "path": "./examples/resources/awscc_iotsitewise_asset_model/import.sh" }, { "resource": "awscc_iotsitewise_dashboard", - "identifier": "DashboardId", + "identifier": ["DashboardId"], "path": "./examples/resources/awscc_iotsitewise_dashboard/import.sh" }, { "resource": "awscc_iotsitewise_gateway", - "identifier": "GatewayId", + "identifier": ["GatewayId"], "path": "./examples/resources/awscc_iotsitewise_gateway/import.sh" }, { "resource": "awscc_iotsitewise_portal", - "identifier": "PortalId", + "identifier": ["PortalId"], "path": "./examples/resources/awscc_iotsitewise_portal/import.sh" }, { "resource": "awscc_iotsitewise_project", - "identifier": "ProjectId", + "identifier": ["ProjectId"], "path": "./examples/resources/awscc_iotsitewise_project/import.sh" }, { "resource": "awscc_iottwinmaker_scene", - "identifier": "WorkspaceId,SceneId", + "identifier": ["WorkspaceId","SceneId"], "path": "./examples/resources/awscc_iottwinmaker_scene/import.sh" }, { "resource": "awscc_iottwinmaker_sync_job", - "identifier": "WorkspaceId,SyncSource", + "identifier": ["WorkspaceId","SyncSource"], "path": "./examples/resources/awscc_iottwinmaker_sync_job/import.sh" }, { "resource": "awscc_iottwinmaker_workspace", - "identifier": "WorkspaceId", + "identifier": ["WorkspaceId"], "path": "./examples/resources/awscc_iottwinmaker_workspace/import.sh" }, { "resource": "awscc_iotwireless_destination", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_iotwireless_destination/import.sh" }, { "resource": "awscc_iotwireless_device_profile", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_iotwireless_device_profile/import.sh" }, { "resource": "awscc_iotwireless_fuota_task", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_iotwireless_fuota_task/import.sh" }, { "resource": "awscc_iotwireless_multicast_group", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_iotwireless_multicast_group/import.sh" }, { "resource": "awscc_iotwireless_network_analyzer_configuration", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_iotwireless_network_analyzer_configuration/import.sh" }, { "resource": "awscc_iotwireless_partner_account", - "identifier": "PartnerAccountId", + "identifier": ["PartnerAccountId"], "path": "./examples/resources/awscc_iotwireless_partner_account/import.sh" }, { "resource": "awscc_iotwireless_service_profile", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_iotwireless_service_profile/import.sh" }, { "resource": "awscc_iotwireless_task_definition", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_iotwireless_task_definition/import.sh" }, { "resource": "awscc_iotwireless_wireless_device", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_iotwireless_wireless_device/import.sh" }, { "resource": "awscc_iotwireless_wireless_device_import_task", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_iotwireless_wireless_device_import_task/import.sh" }, { "resource": "awscc_iotwireless_wireless_gateway", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_iotwireless_wireless_gateway/import.sh" }, { "resource": "awscc_kms_alias", - "identifier": "AliasName", + "identifier": ["AliasName"], "path": "./examples/resources/awscc_kms_alias/import.sh" }, { "resource": "awscc_kms_key", - "identifier": "KeyId", + "identifier": ["KeyId"], "path": "./examples/resources/awscc_kms_key/import.sh" }, { "resource": "awscc_kms_replica_key", - "identifier": "KeyId", + "identifier": ["KeyId"], "path": "./examples/resources/awscc_kms_replica_key/import.sh" }, { "resource": "awscc_kafkaconnect_connector", - "identifier": "ConnectorArn", + "identifier": ["ConnectorArn"], "path": "./examples/resources/awscc_kafkaconnect_connector/import.sh" }, { "resource": "awscc_kafkaconnect_custom_plugin", - "identifier": "CustomPluginArn", + "identifier": ["CustomPluginArn"], "path": "./examples/resources/awscc_kafkaconnect_custom_plugin/import.sh" }, { "resource": "awscc_kafkaconnect_worker_configuration", - "identifier": "WorkerConfigurationArn", + "identifier": ["WorkerConfigurationArn"], "path": "./examples/resources/awscc_kafkaconnect_worker_configuration/import.sh" }, { "resource": "awscc_kendra_data_source", - "identifier": "Id,IndexId", + "identifier": ["Id","IndexId"], "path": "./examples/resources/awscc_kendra_data_source/import.sh" }, { "resource": "awscc_kendra_faq", - "identifier": "Id,IndexId", + "identifier": ["Id","IndexId"], "path": "./examples/resources/awscc_kendra_faq/import.sh" }, { "resource": "awscc_kendra_index", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_kendra_index/import.sh" }, { "resource": "awscc_kendraranking_execution_plan", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_kendraranking_execution_plan/import.sh" }, { "resource": "awscc_kinesis_stream", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_kinesis_stream/import.sh" }, { "resource": "awscc_kinesisanalyticsv2_application", - "identifier": "ApplicationName", + "identifier": ["ApplicationName"], "path": "./examples/resources/awscc_kinesisanalyticsv2_application/import.sh" }, { "resource": "awscc_kinesisfirehose_delivery_stream", - "identifier": "DeliveryStreamName", + "identifier": ["DeliveryStreamName"], "path": "./examples/resources/awscc_kinesisfirehose_delivery_stream/import.sh" }, { "resource": "awscc_kinesisvideo_signaling_channel", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_kinesisvideo_signaling_channel/import.sh" }, { "resource": "awscc_kinesisvideo_stream", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_kinesisvideo_stream/import.sh" }, { "resource": "awscc_lakeformation_data_cells_filter", - "identifier": "TableCatalogId,DatabaseName,TableName,Name", + "identifier": ["TableCatalogId","DatabaseName","TableName","Name"], "path": "./examples/resources/awscc_lakeformation_data_cells_filter/import.sh" }, { "resource": "awscc_lakeformation_principal_permissions", - "identifier": "PrincipalIdentifier,ResourceIdentifier", + "identifier": ["PrincipalIdentifier","ResourceIdentifier"], "path": "./examples/resources/awscc_lakeformation_principal_permissions/import.sh" }, { "resource": "awscc_lakeformation_tag", - "identifier": "TagKey", + "identifier": ["TagKey"], "path": "./examples/resources/awscc_lakeformation_tag/import.sh" }, { "resource": "awscc_lakeformation_tag_association", - "identifier": "ResourceIdentifier,TagsIdentifier", + "identifier": ["ResourceIdentifier","TagsIdentifier"], "path": "./examples/resources/awscc_lakeformation_tag_association/import.sh" }, { "resource": "awscc_lambda_alias", - "identifier": "AliasArn", + "identifier": ["AliasArn"], "path": "./examples/resources/awscc_lambda_alias/import.sh" }, { "resource": "awscc_lambda_code_signing_config", - "identifier": "CodeSigningConfigArn", + "identifier": ["CodeSigningConfigArn"], "path": "./examples/resources/awscc_lambda_code_signing_config/import.sh" }, { "resource": "awscc_lambda_event_invoke_config", - "identifier": "FunctionName,Qualifier", + "identifier": ["FunctionName","Qualifier"], "path": "./examples/resources/awscc_lambda_event_invoke_config/import.sh" }, { "resource": "awscc_lambda_event_source_mapping", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_lambda_event_source_mapping/import.sh" }, { "resource": "awscc_lambda_function", - "identifier": "FunctionName", + "identifier": ["FunctionName"], "path": "./examples/resources/awscc_lambda_function/import.sh" }, { "resource": "awscc_lambda_layer_version", - "identifier": "LayerVersionArn", + "identifier": ["LayerVersionArn"], "path": "./examples/resources/awscc_lambda_layer_version/import.sh" }, { "resource": "awscc_lambda_layer_version_permission", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_lambda_layer_version_permission/import.sh" }, { "resource": "awscc_lambda_permission", - "identifier": "FunctionName,Id", + "identifier": ["FunctionName","Id"], "path": "./examples/resources/awscc_lambda_permission/import.sh" }, { "resource": "awscc_lambda_url", - "identifier": "FunctionArn", + "identifier": ["FunctionArn"], "path": "./examples/resources/awscc_lambda_url/import.sh" }, { "resource": "awscc_lambda_version", - "identifier": "FunctionArn", + "identifier": ["FunctionArn"], "path": "./examples/resources/awscc_lambda_version/import.sh" }, { "resource": "awscc_launchwizard_deployment", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_launchwizard_deployment/import.sh" }, { "resource": "awscc_lex_bot", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_lex_bot/import.sh" }, { "resource": "awscc_lex_bot_alias", - "identifier": "BotAliasId,BotId", + "identifier": ["BotAliasId","BotId"], "path": "./examples/resources/awscc_lex_bot_alias/import.sh" }, { "resource": "awscc_lex_bot_version", - "identifier": "BotId,BotVersion", + "identifier": ["BotId","BotVersion"], "path": "./examples/resources/awscc_lex_bot_version/import.sh" }, { "resource": "awscc_lex_resource_policy", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_lex_resource_policy/import.sh" }, { "resource": "awscc_licensemanager_grant", - "identifier": "GrantArn", + "identifier": ["GrantArn"], "path": "./examples/resources/awscc_licensemanager_grant/import.sh" }, { "resource": "awscc_licensemanager_license", - "identifier": "LicenseArn", + "identifier": ["LicenseArn"], "path": "./examples/resources/awscc_licensemanager_license/import.sh" }, { "resource": "awscc_lightsail_alarm", - "identifier": "AlarmName", + "identifier": ["AlarmName"], "path": "./examples/resources/awscc_lightsail_alarm/import.sh" }, { "resource": "awscc_lightsail_bucket", - "identifier": "BucketName", + "identifier": ["BucketName"], "path": "./examples/resources/awscc_lightsail_bucket/import.sh" }, { "resource": "awscc_lightsail_certificate", - "identifier": "CertificateName", + "identifier": ["CertificateName"], "path": "./examples/resources/awscc_lightsail_certificate/import.sh" }, { "resource": "awscc_lightsail_container", - "identifier": "ServiceName", + "identifier": ["ServiceName"], "path": "./examples/resources/awscc_lightsail_container/import.sh" }, { "resource": "awscc_lightsail_database", - "identifier": "RelationalDatabaseName", + "identifier": ["RelationalDatabaseName"], "path": "./examples/resources/awscc_lightsail_database/import.sh" }, { "resource": "awscc_lightsail_disk", - "identifier": "DiskName", + "identifier": ["DiskName"], "path": "./examples/resources/awscc_lightsail_disk/import.sh" }, { "resource": "awscc_lightsail_distribution", - "identifier": "DistributionName", + "identifier": ["DistributionName"], "path": "./examples/resources/awscc_lightsail_distribution/import.sh" }, { "resource": "awscc_lightsail_instance", - "identifier": "InstanceName", + "identifier": ["InstanceName"], "path": "./examples/resources/awscc_lightsail_instance/import.sh" }, { "resource": "awscc_lightsail_load_balancer", - "identifier": "LoadBalancerName", + "identifier": ["LoadBalancerName"], "path": "./examples/resources/awscc_lightsail_load_balancer/import.sh" }, { "resource": "awscc_lightsail_load_balancer_tls_certificate", - "identifier": "CertificateName,LoadBalancerName", + "identifier": ["CertificateName","LoadBalancerName"], "path": "./examples/resources/awscc_lightsail_load_balancer_tls_certificate/import.sh" }, { "resource": "awscc_lightsail_static_ip", - "identifier": "StaticIpName", + "identifier": ["StaticIpName"], "path": "./examples/resources/awscc_lightsail_static_ip/import.sh" }, { "resource": "awscc_location_api_key", - "identifier": "KeyName", + "identifier": ["KeyName"], "path": "./examples/resources/awscc_location_api_key/import.sh" }, { "resource": "awscc_location_geofence_collection", - "identifier": "CollectionName", + "identifier": ["CollectionName"], "path": "./examples/resources/awscc_location_geofence_collection/import.sh" }, { "resource": "awscc_location_map", - "identifier": "MapName", + "identifier": ["MapName"], "path": "./examples/resources/awscc_location_map/import.sh" }, { "resource": "awscc_location_place_index", - "identifier": "IndexName", + "identifier": ["IndexName"], "path": "./examples/resources/awscc_location_place_index/import.sh" }, { "resource": "awscc_location_route_calculator", - "identifier": "CalculatorName", + "identifier": ["CalculatorName"], "path": "./examples/resources/awscc_location_route_calculator/import.sh" }, { "resource": "awscc_location_tracker", - "identifier": "TrackerName", + "identifier": ["TrackerName"], "path": "./examples/resources/awscc_location_tracker/import.sh" }, { "resource": "awscc_location_tracker_consumer", - "identifier": "TrackerName,ConsumerArn", + "identifier": ["TrackerName","ConsumerArn"], "path": "./examples/resources/awscc_location_tracker_consumer/import.sh" }, { "resource": "awscc_logs_account_policy", - "identifier": "AccountId,PolicyType,PolicyName", + "identifier": ["AccountId","PolicyType","PolicyName"], "path": "./examples/resources/awscc_logs_account_policy/import.sh" }, { "resource": "awscc_logs_delivery", - "identifier": "DeliveryId", + "identifier": ["DeliveryId"], "path": "./examples/resources/awscc_logs_delivery/import.sh" }, { "resource": "awscc_logs_delivery_destination", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_logs_delivery_destination/import.sh" }, { "resource": "awscc_logs_delivery_source", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_logs_delivery_source/import.sh" }, { "resource": "awscc_logs_destination", - "identifier": "DestinationName", + "identifier": ["DestinationName"], "path": "./examples/resources/awscc_logs_destination/import.sh" }, { "resource": "awscc_logs_log_anomaly_detector", - "identifier": "AnomalyDetectorArn", + "identifier": ["AnomalyDetectorArn"], "path": "./examples/resources/awscc_logs_log_anomaly_detector/import.sh" }, { "resource": "awscc_logs_log_group", - "identifier": "LogGroupName", + "identifier": ["LogGroupName"], "path": "./examples/resources/awscc_logs_log_group/import.sh" }, { "resource": "awscc_logs_log_stream", - "identifier": "LogGroupName,LogStreamName", + "identifier": ["LogGroupName","LogStreamName"], "path": "./examples/resources/awscc_logs_log_stream/import.sh" }, { "resource": "awscc_logs_metric_filter", - "identifier": "LogGroupName,FilterName", + "identifier": ["LogGroupName","FilterName"], "path": "./examples/resources/awscc_logs_metric_filter/import.sh" }, { "resource": "awscc_logs_query_definition", - "identifier": "QueryDefinitionId", + "identifier": ["QueryDefinitionId"], "path": "./examples/resources/awscc_logs_query_definition/import.sh" }, { "resource": "awscc_logs_resource_policy", - "identifier": "PolicyName", + "identifier": ["PolicyName"], "path": "./examples/resources/awscc_logs_resource_policy/import.sh" }, { "resource": "awscc_logs_subscription_filter", - "identifier": "FilterName,LogGroupName", + "identifier": ["FilterName","LogGroupName"], "path": "./examples/resources/awscc_logs_subscription_filter/import.sh" }, { "resource": "awscc_lookoutequipment_inference_scheduler", - "identifier": "InferenceSchedulerName", + "identifier": ["InferenceSchedulerName"], "path": "./examples/resources/awscc_lookoutequipment_inference_scheduler/import.sh" }, { "resource": "awscc_lookoutmetrics_alert", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_lookoutmetrics_alert/import.sh" }, { "resource": "awscc_lookoutmetrics_anomaly_detector", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_lookoutmetrics_anomaly_detector/import.sh" }, { "resource": "awscc_lookoutvision_project", - "identifier": "ProjectName", + "identifier": ["ProjectName"], "path": "./examples/resources/awscc_lookoutvision_project/import.sh" }, { "resource": "awscc_m2_application", - "identifier": "ApplicationArn", + "identifier": ["ApplicationArn"], "path": "./examples/resources/awscc_m2_application/import.sh" }, { "resource": "awscc_m2_environment", - "identifier": "EnvironmentArn", + "identifier": ["EnvironmentArn"], "path": "./examples/resources/awscc_m2_environment/import.sh" }, { "resource": "awscc_msk_batch_scram_secret", - "identifier": "ClusterArn", + "identifier": ["ClusterArn"], "path": "./examples/resources/awscc_msk_batch_scram_secret/import.sh" }, { "resource": "awscc_msk_cluster", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_msk_cluster/import.sh" }, { "resource": "awscc_msk_cluster_policy", - "identifier": "ClusterArn", + "identifier": ["ClusterArn"], "path": "./examples/resources/awscc_msk_cluster_policy/import.sh" }, { "resource": "awscc_msk_configuration", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_msk_configuration/import.sh" }, { "resource": "awscc_msk_replicator", - "identifier": "ReplicatorArn", + "identifier": ["ReplicatorArn"], "path": "./examples/resources/awscc_msk_replicator/import.sh" }, { "resource": "awscc_msk_serverless_cluster", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_msk_serverless_cluster/import.sh" }, { "resource": "awscc_msk_vpc_connection", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_msk_vpc_connection/import.sh" }, { "resource": "awscc_mwaa_environment", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_mwaa_environment/import.sh" }, { "resource": "awscc_macie_allow_list", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_macie_allow_list/import.sh" }, { "resource": "awscc_macie_custom_data_identifier", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_macie_custom_data_identifier/import.sh" }, { "resource": "awscc_macie_findings_filter", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_macie_findings_filter/import.sh" }, { "resource": "awscc_macie_session", - "identifier": "AwsAccountId", + "identifier": ["AwsAccountId"], "path": "./examples/resources/awscc_macie_session/import.sh" }, { "resource": "awscc_managedblockchain_accessor", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_managedblockchain_accessor/import.sh" }, { "resource": "awscc_mediaconnect_bridge", - "identifier": "BridgeArn", + "identifier": ["BridgeArn"], "path": "./examples/resources/awscc_mediaconnect_bridge/import.sh" }, { "resource": "awscc_mediaconnect_bridge_output", - "identifier": "BridgeArn,Name", + "identifier": ["BridgeArn","Name"], "path": "./examples/resources/awscc_mediaconnect_bridge_output/import.sh" }, { "resource": "awscc_mediaconnect_bridge_source", - "identifier": "BridgeArn,Name", + "identifier": ["BridgeArn","Name"], "path": "./examples/resources/awscc_mediaconnect_bridge_source/import.sh" }, { "resource": "awscc_mediaconnect_flow", - "identifier": "FlowArn", + "identifier": ["FlowArn"], "path": "./examples/resources/awscc_mediaconnect_flow/import.sh" }, { "resource": "awscc_mediaconnect_flow_entitlement", - "identifier": "EntitlementArn", + "identifier": ["EntitlementArn"], "path": "./examples/resources/awscc_mediaconnect_flow_entitlement/import.sh" }, { "resource": "awscc_mediaconnect_flow_output", - "identifier": "OutputArn", + "identifier": ["OutputArn"], "path": "./examples/resources/awscc_mediaconnect_flow_output/import.sh" }, { "resource": "awscc_mediaconnect_flow_source", - "identifier": "SourceArn", + "identifier": ["SourceArn"], "path": "./examples/resources/awscc_mediaconnect_flow_source/import.sh" }, { "resource": "awscc_mediaconnect_flow_vpc_interface", - "identifier": "FlowArn,Name", + "identifier": ["FlowArn","Name"], "path": "./examples/resources/awscc_mediaconnect_flow_vpc_interface/import.sh" }, { "resource": "awscc_mediaconnect_gateway", - "identifier": "GatewayArn", + "identifier": ["GatewayArn"], "path": "./examples/resources/awscc_mediaconnect_gateway/import.sh" }, { "resource": "awscc_medialive_multiplex", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_medialive_multiplex/import.sh" }, { "resource": "awscc_medialive_multiplexprogram", - "identifier": "ProgramName,MultiplexId", + "identifier": ["ProgramName","MultiplexId"], "path": "./examples/resources/awscc_medialive_multiplexprogram/import.sh" }, { "resource": "awscc_mediapackage_asset", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_mediapackage_asset/import.sh" }, { "resource": "awscc_mediapackage_channel", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_mediapackage_channel/import.sh" }, { "resource": "awscc_mediapackage_origin_endpoint", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_mediapackage_origin_endpoint/import.sh" }, { "resource": "awscc_mediapackage_packaging_configuration", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_mediapackage_packaging_configuration/import.sh" }, { "resource": "awscc_mediapackage_packaging_group", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_mediapackage_packaging_group/import.sh" }, { "resource": "awscc_mediapackagev2_channel", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_mediapackagev2_channel/import.sh" }, { "resource": "awscc_mediapackagev2_channel_group", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_mediapackagev2_channel_group/import.sh" }, { "resource": "awscc_mediapackagev2_channel_policy", - "identifier": "ChannelGroupName,ChannelName", + "identifier": ["ChannelGroupName","ChannelName"], "path": "./examples/resources/awscc_mediapackagev2_channel_policy/import.sh" }, { "resource": "awscc_mediapackagev2_origin_endpoint", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_mediapackagev2_origin_endpoint/import.sh" }, { "resource": "awscc_mediapackagev2_origin_endpoint_policy", - "identifier": "ChannelGroupName,ChannelName,OriginEndpointName", + "identifier": ["ChannelGroupName","ChannelName","OriginEndpointName"], "path": "./examples/resources/awscc_mediapackagev2_origin_endpoint_policy/import.sh" }, { "resource": "awscc_mediatailor_channel", - "identifier": "ChannelName", + "identifier": ["ChannelName"], "path": "./examples/resources/awscc_mediatailor_channel/import.sh" }, { "resource": "awscc_mediatailor_channel_policy", - "identifier": "ChannelName", + "identifier": ["ChannelName"], "path": "./examples/resources/awscc_mediatailor_channel_policy/import.sh" }, { "resource": "awscc_mediatailor_live_source", - "identifier": "LiveSourceName,SourceLocationName", + "identifier": ["LiveSourceName","SourceLocationName"], "path": "./examples/resources/awscc_mediatailor_live_source/import.sh" }, { "resource": "awscc_mediatailor_source_location", - "identifier": "SourceLocationName", + "identifier": ["SourceLocationName"], "path": "./examples/resources/awscc_mediatailor_source_location/import.sh" }, { "resource": "awscc_mediatailor_vod_source", - "identifier": "SourceLocationName,VodSourceName", + "identifier": ["SourceLocationName","VodSourceName"], "path": "./examples/resources/awscc_mediatailor_vod_source/import.sh" }, { "resource": "awscc_memorydb_acl", - "identifier": "ACLName", + "identifier": ["ACLName"], "path": "./examples/resources/awscc_memorydb_acl/import.sh" }, { "resource": "awscc_memorydb_cluster", - "identifier": "ClusterName", + "identifier": ["ClusterName"], "path": "./examples/resources/awscc_memorydb_cluster/import.sh" }, { "resource": "awscc_memorydb_parameter_group", - "identifier": "ParameterGroupName", + "identifier": ["ParameterGroupName"], "path": "./examples/resources/awscc_memorydb_parameter_group/import.sh" }, { "resource": "awscc_memorydb_subnet_group", - "identifier": "SubnetGroupName", + "identifier": ["SubnetGroupName"], "path": "./examples/resources/awscc_memorydb_subnet_group/import.sh" }, { "resource": "awscc_memorydb_user", - "identifier": "UserName", + "identifier": ["UserName"], "path": "./examples/resources/awscc_memorydb_user/import.sh" }, { "resource": "awscc_neptune_db_cluster", - "identifier": "DBClusterIdentifier", + "identifier": ["DBClusterIdentifier"], "path": "./examples/resources/awscc_neptune_db_cluster/import.sh" }, { "resource": "awscc_neptunegraph_graph", - "identifier": "GraphId", + "identifier": ["GraphId"], "path": "./examples/resources/awscc_neptunegraph_graph/import.sh" }, { "resource": "awscc_neptunegraph_private_graph_endpoint", - "identifier": "PrivateGraphEndpointIdentifier", + "identifier": ["PrivateGraphEndpointIdentifier"], "path": "./examples/resources/awscc_neptunegraph_private_graph_endpoint/import.sh" }, { "resource": "awscc_networkfirewall_firewall", - "identifier": "FirewallArn", + "identifier": ["FirewallArn"], "path": "./examples/resources/awscc_networkfirewall_firewall/import.sh" }, { "resource": "awscc_networkfirewall_firewall_policy", - "identifier": "FirewallPolicyArn", + "identifier": ["FirewallPolicyArn"], "path": "./examples/resources/awscc_networkfirewall_firewall_policy/import.sh" }, { "resource": "awscc_networkfirewall_logging_configuration", - "identifier": "FirewallArn", + "identifier": ["FirewallArn"], "path": "./examples/resources/awscc_networkfirewall_logging_configuration/import.sh" }, { "resource": "awscc_networkfirewall_rule_group", - "identifier": "RuleGroupArn", + "identifier": ["RuleGroupArn"], "path": "./examples/resources/awscc_networkfirewall_rule_group/import.sh" }, { "resource": "awscc_networkfirewall_tls_inspection_configuration", - "identifier": "TLSInspectionConfigurationArn", + "identifier": ["TLSInspectionConfigurationArn"], "path": "./examples/resources/awscc_networkfirewall_tls_inspection_configuration/import.sh" }, { "resource": "awscc_networkmanager_connect_attachment", - "identifier": "AttachmentId", + "identifier": ["AttachmentId"], "path": "./examples/resources/awscc_networkmanager_connect_attachment/import.sh" }, { "resource": "awscc_networkmanager_connect_peer", - "identifier": "ConnectPeerId", + "identifier": ["ConnectPeerId"], "path": "./examples/resources/awscc_networkmanager_connect_peer/import.sh" }, { "resource": "awscc_networkmanager_core_network", - "identifier": "CoreNetworkId", + "identifier": ["CoreNetworkId"], "path": "./examples/resources/awscc_networkmanager_core_network/import.sh" }, { "resource": "awscc_networkmanager_customer_gateway_association", - "identifier": "GlobalNetworkId,CustomerGatewayArn", + "identifier": ["GlobalNetworkId","CustomerGatewayArn"], "path": "./examples/resources/awscc_networkmanager_customer_gateway_association/import.sh" }, { "resource": "awscc_networkmanager_device", - "identifier": "GlobalNetworkId,DeviceId", + "identifier": ["GlobalNetworkId","DeviceId"], "path": "./examples/resources/awscc_networkmanager_device/import.sh" }, { "resource": "awscc_networkmanager_global_network", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_networkmanager_global_network/import.sh" }, { "resource": "awscc_networkmanager_link", - "identifier": "GlobalNetworkId,LinkId", + "identifier": ["GlobalNetworkId","LinkId"], "path": "./examples/resources/awscc_networkmanager_link/import.sh" }, { "resource": "awscc_networkmanager_link_association", - "identifier": "GlobalNetworkId,DeviceId,LinkId", + "identifier": ["GlobalNetworkId","DeviceId","LinkId"], "path": "./examples/resources/awscc_networkmanager_link_association/import.sh" }, { "resource": "awscc_networkmanager_site", - "identifier": "GlobalNetworkId,SiteId", + "identifier": ["GlobalNetworkId","SiteId"], "path": "./examples/resources/awscc_networkmanager_site/import.sh" }, { "resource": "awscc_networkmanager_site_to_site_vpn_attachment", - "identifier": "AttachmentId", + "identifier": ["AttachmentId"], "path": "./examples/resources/awscc_networkmanager_site_to_site_vpn_attachment/import.sh" }, { "resource": "awscc_networkmanager_transit_gateway_peering", - "identifier": "PeeringId", + "identifier": ["PeeringId"], "path": "./examples/resources/awscc_networkmanager_transit_gateway_peering/import.sh" }, { "resource": "awscc_networkmanager_transit_gateway_registration", - "identifier": "GlobalNetworkId,TransitGatewayArn", + "identifier": ["GlobalNetworkId","TransitGatewayArn"], "path": "./examples/resources/awscc_networkmanager_transit_gateway_registration/import.sh" }, { "resource": "awscc_networkmanager_transit_gateway_route_table_attachment", - "identifier": "AttachmentId", + "identifier": ["AttachmentId"], "path": "./examples/resources/awscc_networkmanager_transit_gateway_route_table_attachment/import.sh" }, { "resource": "awscc_networkmanager_vpc_attachment", - "identifier": "AttachmentId", + "identifier": ["AttachmentId"], "path": "./examples/resources/awscc_networkmanager_vpc_attachment/import.sh" }, { "resource": "awscc_nimblestudio_launch_profile", - "identifier": "LaunchProfileId,StudioId", + "identifier": ["LaunchProfileId","StudioId"], "path": "./examples/resources/awscc_nimblestudio_launch_profile/import.sh" }, { "resource": "awscc_nimblestudio_streaming_image", - "identifier": "StudioId,StreamingImageId", + "identifier": ["StudioId","StreamingImageId"], "path": "./examples/resources/awscc_nimblestudio_streaming_image/import.sh" }, { "resource": "awscc_nimblestudio_studio", - "identifier": "StudioId", + "identifier": ["StudioId"], "path": "./examples/resources/awscc_nimblestudio_studio/import.sh" }, { "resource": "awscc_nimblestudio_studio_component", - "identifier": "StudioComponentId,StudioId", + "identifier": ["StudioComponentId","StudioId"], "path": "./examples/resources/awscc_nimblestudio_studio_component/import.sh" }, { "resource": "awscc_osis_pipeline", - "identifier": "PipelineArn", + "identifier": ["PipelineArn"], "path": "./examples/resources/awscc_osis_pipeline/import.sh" }, { "resource": "awscc_oam_link", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_oam_link/import.sh" }, { "resource": "awscc_oam_sink", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_oam_sink/import.sh" }, { "resource": "awscc_omics_reference_store", - "identifier": "ReferenceStoreId", + "identifier": ["ReferenceStoreId"], "path": "./examples/resources/awscc_omics_reference_store/import.sh" }, { "resource": "awscc_omics_run_group", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_omics_run_group/import.sh" }, { "resource": "awscc_omics_sequence_store", - "identifier": "SequenceStoreId", + "identifier": ["SequenceStoreId"], "path": "./examples/resources/awscc_omics_sequence_store/import.sh" }, { "resource": "awscc_omics_variant_store", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_omics_variant_store/import.sh" }, { "resource": "awscc_omics_workflow", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_omics_workflow/import.sh" }, { "resource": "awscc_opensearchserverless_access_policy", - "identifier": "Type,Name", + "identifier": ["Type","Name"], "path": "./examples/resources/awscc_opensearchserverless_access_policy/import.sh" }, { "resource": "awscc_opensearchserverless_collection", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_opensearchserverless_collection/import.sh" }, { "resource": "awscc_opensearchserverless_lifecycle_policy", - "identifier": "Type,Name", + "identifier": ["Type","Name"], "path": "./examples/resources/awscc_opensearchserverless_lifecycle_policy/import.sh" }, { "resource": "awscc_opensearchserverless_security_config", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_opensearchserverless_security_config/import.sh" }, { "resource": "awscc_opensearchserverless_security_policy", - "identifier": "Type,Name", + "identifier": ["Type","Name"], "path": "./examples/resources/awscc_opensearchserverless_security_policy/import.sh" }, { "resource": "awscc_opensearchserverless_vpc_endpoint", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_opensearchserverless_vpc_endpoint/import.sh" }, { "resource": "awscc_opensearchservice_domain", - "identifier": "DomainName", + "identifier": ["DomainName"], "path": "./examples/resources/awscc_opensearchservice_domain/import.sh" }, { "resource": "awscc_opsworkscm_server", - "identifier": "ServerName", + "identifier": ["ServerName"], "path": "./examples/resources/awscc_opsworkscm_server/import.sh" }, { "resource": "awscc_organizations_account", - "identifier": "AccountId", + "identifier": ["AccountId"], "path": "./examples/resources/awscc_organizations_account/import.sh" }, { "resource": "awscc_organizations_organization", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_organizations_organization/import.sh" }, { "resource": "awscc_organizations_organizational_unit", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_organizations_organizational_unit/import.sh" }, { "resource": "awscc_organizations_policy", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_organizations_policy/import.sh" }, { "resource": "awscc_organizations_resource_policy", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_organizations_resource_policy/import.sh" }, { "resource": "awscc_pcaconnectorad_connector", - "identifier": "ConnectorArn", + "identifier": ["ConnectorArn"], "path": "./examples/resources/awscc_pcaconnectorad_connector/import.sh" }, { "resource": "awscc_pcaconnectorad_directory_registration", - "identifier": "DirectoryRegistrationArn", + "identifier": ["DirectoryRegistrationArn"], "path": "./examples/resources/awscc_pcaconnectorad_directory_registration/import.sh" }, { "resource": "awscc_pcaconnectorad_service_principal_name", - "identifier": "ConnectorArn,DirectoryRegistrationArn", + "identifier": ["ConnectorArn","DirectoryRegistrationArn"], "path": "./examples/resources/awscc_pcaconnectorad_service_principal_name/import.sh" }, { "resource": "awscc_pcaconnectorad_template", - "identifier": "TemplateArn", + "identifier": ["TemplateArn"], "path": "./examples/resources/awscc_pcaconnectorad_template/import.sh" }, { "resource": "awscc_pcaconnectorad_template_group_access_control_entry", - "identifier": "GroupSecurityIdentifier,TemplateArn", + "identifier": ["GroupSecurityIdentifier","TemplateArn"], "path": "./examples/resources/awscc_pcaconnectorad_template_group_access_control_entry/import.sh" }, { "resource": "awscc_panorama_application_instance", - "identifier": "ApplicationInstanceId", + "identifier": ["ApplicationInstanceId"], "path": "./examples/resources/awscc_panorama_application_instance/import.sh" }, { "resource": "awscc_panorama_package", - "identifier": "PackageId", + "identifier": ["PackageId"], "path": "./examples/resources/awscc_panorama_package/import.sh" }, { "resource": "awscc_panorama_package_version", - "identifier": "PackageId,PackageVersion,PatchVersion", + "identifier": ["PackageId","PackageVersion","PatchVersion"], "path": "./examples/resources/awscc_panorama_package_version/import.sh" }, { "resource": "awscc_paymentcryptography_alias", - "identifier": "AliasName", + "identifier": ["AliasName"], "path": "./examples/resources/awscc_paymentcryptography_alias/import.sh" }, { "resource": "awscc_paymentcryptography_key", - "identifier": "KeyIdentifier", + "identifier": ["KeyIdentifier"], "path": "./examples/resources/awscc_paymentcryptography_key/import.sh" }, { "resource": "awscc_personalize_dataset", - "identifier": "DatasetArn", + "identifier": ["DatasetArn"], "path": "./examples/resources/awscc_personalize_dataset/import.sh" }, { "resource": "awscc_personalize_dataset_group", - "identifier": "DatasetGroupArn", + "identifier": ["DatasetGroupArn"], "path": "./examples/resources/awscc_personalize_dataset_group/import.sh" }, { "resource": "awscc_personalize_schema", - "identifier": "SchemaArn", + "identifier": ["SchemaArn"], "path": "./examples/resources/awscc_personalize_schema/import.sh" }, { "resource": "awscc_personalize_solution", - "identifier": "SolutionArn", + "identifier": ["SolutionArn"], "path": "./examples/resources/awscc_personalize_solution/import.sh" }, { "resource": "awscc_pinpoint_in_app_template", - "identifier": "TemplateName", + "identifier": ["TemplateName"], "path": "./examples/resources/awscc_pinpoint_in_app_template/import.sh" }, { "resource": "awscc_pipes_pipe", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_pipes_pipe/import.sh" }, { "resource": "awscc_proton_environment_account_connection", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_proton_environment_account_connection/import.sh" }, { "resource": "awscc_proton_environment_template", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_proton_environment_template/import.sh" }, { "resource": "awscc_proton_service_template", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_proton_service_template/import.sh" }, { "resource": "awscc_qbusiness_application", - "identifier": "ApplicationId", + "identifier": ["ApplicationId"], "path": "./examples/resources/awscc_qbusiness_application/import.sh" }, { "resource": "awscc_qbusiness_data_source", - "identifier": "ApplicationId,DataSourceId,IndexId", + "identifier": ["ApplicationId","DataSourceId","IndexId"], "path": "./examples/resources/awscc_qbusiness_data_source/import.sh" }, { "resource": "awscc_qbusiness_index", - "identifier": "ApplicationId,IndexId", + "identifier": ["ApplicationId","IndexId"], "path": "./examples/resources/awscc_qbusiness_index/import.sh" }, { "resource": "awscc_qbusiness_plugin", - "identifier": "ApplicationId,PluginId", + "identifier": ["ApplicationId","PluginId"], "path": "./examples/resources/awscc_qbusiness_plugin/import.sh" }, { "resource": "awscc_qbusiness_retriever", - "identifier": "ApplicationId,RetrieverId", + "identifier": ["ApplicationId","RetrieverId"], "path": "./examples/resources/awscc_qbusiness_retriever/import.sh" }, { "resource": "awscc_qbusiness_web_experience", - "identifier": "ApplicationId,WebExperienceId", + "identifier": ["ApplicationId","WebExperienceId"], "path": "./examples/resources/awscc_qbusiness_web_experience/import.sh" }, { "resource": "awscc_qldb_stream", - "identifier": "LedgerName,Id", + "identifier": ["LedgerName","Id"], "path": "./examples/resources/awscc_qldb_stream/import.sh" }, { "resource": "awscc_quicksight_analysis", - "identifier": "AnalysisId,AwsAccountId", + "identifier": ["AnalysisId","AwsAccountId"], "path": "./examples/resources/awscc_quicksight_analysis/import.sh" }, { "resource": "awscc_quicksight_dashboard", - "identifier": "AwsAccountId,DashboardId", + "identifier": ["AwsAccountId","DashboardId"], "path": "./examples/resources/awscc_quicksight_dashboard/import.sh" }, { "resource": "awscc_quicksight_data_set", - "identifier": "AwsAccountId,DataSetId", + "identifier": ["AwsAccountId","DataSetId"], "path": "./examples/resources/awscc_quicksight_data_set/import.sh" }, { "resource": "awscc_quicksight_data_source", - "identifier": "AwsAccountId,DataSourceId", + "identifier": ["AwsAccountId","DataSourceId"], "path": "./examples/resources/awscc_quicksight_data_source/import.sh" }, { "resource": "awscc_quicksight_refresh_schedule", - "identifier": "AwsAccountId,DataSetId,Schedule/ScheduleId", + "identifier": ["AwsAccountId","DataSetId","Schedule/ScheduleId"], "path": "./examples/resources/awscc_quicksight_refresh_schedule/import.sh" }, { "resource": "awscc_quicksight_template", - "identifier": "AwsAccountId,TemplateId", + "identifier": ["AwsAccountId","TemplateId"], "path": "./examples/resources/awscc_quicksight_template/import.sh" }, { "resource": "awscc_quicksight_theme", - "identifier": "ThemeId,AwsAccountId", + "identifier": ["ThemeId","AwsAccountId"], "path": "./examples/resources/awscc_quicksight_theme/import.sh" }, { "resource": "awscc_quicksight_topic", - "identifier": "AwsAccountId,TopicId", + "identifier": ["AwsAccountId","TopicId"], "path": "./examples/resources/awscc_quicksight_topic/import.sh" }, { "resource": "awscc_quicksight_vpc_connection", - "identifier": "AwsAccountId,VPCConnectionId", + "identifier": ["AwsAccountId","VPCConnectionId"], "path": "./examples/resources/awscc_quicksight_vpc_connection/import.sh" }, { "resource": "awscc_ram_permission", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ram_permission/import.sh" }, { "resource": "awscc_rds_custom_db_engine_version", - "identifier": "Engine,EngineVersion", + "identifier": ["Engine","EngineVersion"], "path": "./examples/resources/awscc_rds_custom_db_engine_version/import.sh" }, { "resource": "awscc_rds_db_cluster", - "identifier": "DBClusterIdentifier", + "identifier": ["DBClusterIdentifier"], "path": "./examples/resources/awscc_rds_db_cluster/import.sh" }, { "resource": "awscc_rds_db_cluster_parameter_group", - "identifier": "DBClusterParameterGroupName", + "identifier": ["DBClusterParameterGroupName"], "path": "./examples/resources/awscc_rds_db_cluster_parameter_group/import.sh" }, { "resource": "awscc_rds_db_instance", - "identifier": "DBInstanceIdentifier", + "identifier": ["DBInstanceIdentifier"], "path": "./examples/resources/awscc_rds_db_instance/import.sh" }, { "resource": "awscc_rds_db_parameter_group", - "identifier": "DBParameterGroupName", + "identifier": ["DBParameterGroupName"], "path": "./examples/resources/awscc_rds_db_parameter_group/import.sh" }, { "resource": "awscc_rds_db_proxy", - "identifier": "DBProxyName", + "identifier": ["DBProxyName"], "path": "./examples/resources/awscc_rds_db_proxy/import.sh" }, { "resource": "awscc_rds_db_proxy_endpoint", - "identifier": "DBProxyEndpointName", + "identifier": ["DBProxyEndpointName"], "path": "./examples/resources/awscc_rds_db_proxy_endpoint/import.sh" }, { "resource": "awscc_rds_db_proxy_target_group", - "identifier": "TargetGroupArn", + "identifier": ["TargetGroupArn"], "path": "./examples/resources/awscc_rds_db_proxy_target_group/import.sh" }, { "resource": "awscc_rds_db_subnet_group", - "identifier": "DBSubnetGroupName", + "identifier": ["DBSubnetGroupName"], "path": "./examples/resources/awscc_rds_db_subnet_group/import.sh" }, { "resource": "awscc_rds_event_subscription", - "identifier": "SubscriptionName", + "identifier": ["SubscriptionName"], "path": "./examples/resources/awscc_rds_event_subscription/import.sh" }, { "resource": "awscc_rds_global_cluster", - "identifier": "GlobalClusterIdentifier", + "identifier": ["GlobalClusterIdentifier"], "path": "./examples/resources/awscc_rds_global_cluster/import.sh" }, { "resource": "awscc_rds_integration", - "identifier": "IntegrationArn", + "identifier": ["IntegrationArn"], "path": "./examples/resources/awscc_rds_integration/import.sh" }, { "resource": "awscc_rds_option_group", - "identifier": "OptionGroupName", + "identifier": ["OptionGroupName"], "path": "./examples/resources/awscc_rds_option_group/import.sh" }, { "resource": "awscc_rum_app_monitor", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_rum_app_monitor/import.sh" }, { "resource": "awscc_redshift_cluster", - "identifier": "ClusterIdentifier", + "identifier": ["ClusterIdentifier"], "path": "./examples/resources/awscc_redshift_cluster/import.sh" }, { "resource": "awscc_redshift_cluster_parameter_group", - "identifier": "ParameterGroupName", + "identifier": ["ParameterGroupName"], "path": "./examples/resources/awscc_redshift_cluster_parameter_group/import.sh" }, { "resource": "awscc_redshift_cluster_subnet_group", - "identifier": "ClusterSubnetGroupName", + "identifier": ["ClusterSubnetGroupName"], "path": "./examples/resources/awscc_redshift_cluster_subnet_group/import.sh" }, { "resource": "awscc_redshift_endpoint_access", - "identifier": "EndpointName", + "identifier": ["EndpointName"], "path": "./examples/resources/awscc_redshift_endpoint_access/import.sh" }, { "resource": "awscc_redshift_endpoint_authorization", - "identifier": "ClusterIdentifier,Account", + "identifier": ["ClusterIdentifier","Account"], "path": "./examples/resources/awscc_redshift_endpoint_authorization/import.sh" }, { "resource": "awscc_redshift_event_subscription", - "identifier": "SubscriptionName", + "identifier": ["SubscriptionName"], "path": "./examples/resources/awscc_redshift_event_subscription/import.sh" }, { "resource": "awscc_redshift_scheduled_action", - "identifier": "ScheduledActionName", + "identifier": ["ScheduledActionName"], "path": "./examples/resources/awscc_redshift_scheduled_action/import.sh" }, { "resource": "awscc_redshiftserverless_namespace", - "identifier": "NamespaceName", + "identifier": ["NamespaceName"], "path": "./examples/resources/awscc_redshiftserverless_namespace/import.sh" }, { "resource": "awscc_redshiftserverless_workgroup", - "identifier": "WorkgroupName", + "identifier": ["WorkgroupName"], "path": "./examples/resources/awscc_redshiftserverless_workgroup/import.sh" }, { "resource": "awscc_refactorspaces_application", - "identifier": "EnvironmentIdentifier,ApplicationIdentifier", + "identifier": ["EnvironmentIdentifier","ApplicationIdentifier"], "path": "./examples/resources/awscc_refactorspaces_application/import.sh" }, { "resource": "awscc_refactorspaces_environment", - "identifier": "EnvironmentIdentifier", + "identifier": ["EnvironmentIdentifier"], "path": "./examples/resources/awscc_refactorspaces_environment/import.sh" }, { "resource": "awscc_refactorspaces_route", - "identifier": "EnvironmentIdentifier,ApplicationIdentifier,RouteIdentifier", + "identifier": ["EnvironmentIdentifier","ApplicationIdentifier","RouteIdentifier"], "path": "./examples/resources/awscc_refactorspaces_route/import.sh" }, { "resource": "awscc_refactorspaces_service", - "identifier": "EnvironmentIdentifier,ApplicationIdentifier,ServiceIdentifier", + "identifier": ["EnvironmentIdentifier","ApplicationIdentifier","ServiceIdentifier"], "path": "./examples/resources/awscc_refactorspaces_service/import.sh" }, { "resource": "awscc_rekognition_collection", - "identifier": "CollectionId", + "identifier": ["CollectionId"], "path": "./examples/resources/awscc_rekognition_collection/import.sh" }, { "resource": "awscc_rekognition_project", - "identifier": "ProjectName", + "identifier": ["ProjectName"], "path": "./examples/resources/awscc_rekognition_project/import.sh" }, { "resource": "awscc_resiliencehub_app", - "identifier": "AppArn", + "identifier": ["AppArn"], "path": "./examples/resources/awscc_resiliencehub_app/import.sh" }, { "resource": "awscc_resiliencehub_resiliency_policy", - "identifier": "PolicyArn", + "identifier": ["PolicyArn"], "path": "./examples/resources/awscc_resiliencehub_resiliency_policy/import.sh" }, { "resource": "awscc_resourceexplorer2_default_view_association", - "identifier": "AssociatedAwsPrincipal", + "identifier": ["AssociatedAwsPrincipal"], "path": "./examples/resources/awscc_resourceexplorer2_default_view_association/import.sh" }, { "resource": "awscc_resourceexplorer2_index", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_resourceexplorer2_index/import.sh" }, { "resource": "awscc_resourceexplorer2_view", - "identifier": "ViewArn", + "identifier": ["ViewArn"], "path": "./examples/resources/awscc_resourceexplorer2_view/import.sh" }, { "resource": "awscc_resourcegroups_group", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_resourcegroups_group/import.sh" }, { "resource": "awscc_robomaker_fleet", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_robomaker_fleet/import.sh" }, { "resource": "awscc_robomaker_robot", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_robomaker_robot/import.sh" }, { "resource": "awscc_robomaker_robot_application", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_robomaker_robot_application/import.sh" }, { "resource": "awscc_robomaker_robot_application_version", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_robomaker_robot_application_version/import.sh" }, { "resource": "awscc_robomaker_simulation_application", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_robomaker_simulation_application/import.sh" }, { "resource": "awscc_robomaker_simulation_application_version", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_robomaker_simulation_application_version/import.sh" }, { "resource": "awscc_rolesanywhere_crl", - "identifier": "CrlId", + "identifier": ["CrlId"], "path": "./examples/resources/awscc_rolesanywhere_crl/import.sh" }, { "resource": "awscc_rolesanywhere_profile", - "identifier": "ProfileId", + "identifier": ["ProfileId"], "path": "./examples/resources/awscc_rolesanywhere_profile/import.sh" }, { "resource": "awscc_rolesanywhere_trust_anchor", - "identifier": "TrustAnchorId", + "identifier": ["TrustAnchorId"], "path": "./examples/resources/awscc_rolesanywhere_trust_anchor/import.sh" }, { "resource": "awscc_route53_cidr_collection", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_route53_cidr_collection/import.sh" }, { "resource": "awscc_route53_dnssec", - "identifier": "HostedZoneId", + "identifier": ["HostedZoneId"], "path": "./examples/resources/awscc_route53_dnssec/import.sh" }, { "resource": "awscc_route53_health_check", - "identifier": "HealthCheckId", + "identifier": ["HealthCheckId"], "path": "./examples/resources/awscc_route53_health_check/import.sh" }, { "resource": "awscc_route53_hosted_zone", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_route53_hosted_zone/import.sh" }, { "resource": "awscc_route53_key_signing_key", - "identifier": "HostedZoneId,Name", + "identifier": ["HostedZoneId","Name"], "path": "./examples/resources/awscc_route53_key_signing_key/import.sh" }, { "resource": "awscc_route53profiles_profile", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_route53profiles_profile/import.sh" }, { "resource": "awscc_route53profiles_profile_association", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_route53profiles_profile_association/import.sh" }, { "resource": "awscc_route53profiles_profile_resource_association", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_route53profiles_profile_resource_association/import.sh" }, { "resource": "awscc_route53recoverycontrol_cluster", - "identifier": "ClusterArn", + "identifier": ["ClusterArn"], "path": "./examples/resources/awscc_route53recoverycontrol_cluster/import.sh" }, { "resource": "awscc_route53recoverycontrol_control_panel", - "identifier": "ControlPanelArn", + "identifier": ["ControlPanelArn"], "path": "./examples/resources/awscc_route53recoverycontrol_control_panel/import.sh" }, { "resource": "awscc_route53recoverycontrol_routing_control", - "identifier": "RoutingControlArn", + "identifier": ["RoutingControlArn"], "path": "./examples/resources/awscc_route53recoverycontrol_routing_control/import.sh" }, { "resource": "awscc_route53recoverycontrol_safety_rule", - "identifier": "SafetyRuleArn", + "identifier": ["SafetyRuleArn"], "path": "./examples/resources/awscc_route53recoverycontrol_safety_rule/import.sh" }, { "resource": "awscc_route53recoveryreadiness_cell", - "identifier": "CellName", + "identifier": ["CellName"], "path": "./examples/resources/awscc_route53recoveryreadiness_cell/import.sh" }, { "resource": "awscc_route53recoveryreadiness_readiness_check", - "identifier": "ReadinessCheckName", + "identifier": ["ReadinessCheckName"], "path": "./examples/resources/awscc_route53recoveryreadiness_readiness_check/import.sh" }, { "resource": "awscc_route53recoveryreadiness_recovery_group", - "identifier": "RecoveryGroupName", + "identifier": ["RecoveryGroupName"], "path": "./examples/resources/awscc_route53recoveryreadiness_recovery_group/import.sh" }, { "resource": "awscc_route53recoveryreadiness_resource_set", - "identifier": "ResourceSetName", + "identifier": ["ResourceSetName"], "path": "./examples/resources/awscc_route53recoveryreadiness_resource_set/import.sh" }, { "resource": "awscc_route53resolver_firewall_domain_list", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_route53resolver_firewall_domain_list/import.sh" }, { "resource": "awscc_route53resolver_firewall_rule_group", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_route53resolver_firewall_rule_group/import.sh" }, { "resource": "awscc_route53resolver_firewall_rule_group_association", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_route53resolver_firewall_rule_group_association/import.sh" }, { "resource": "awscc_route53resolver_outpost_resolver", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_route53resolver_outpost_resolver/import.sh" }, { "resource": "awscc_route53resolver_resolver_config", - "identifier": "ResourceId", + "identifier": ["ResourceId"], "path": "./examples/resources/awscc_route53resolver_resolver_config/import.sh" }, { "resource": "awscc_route53resolver_resolver_dnssec_config", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_route53resolver_resolver_dnssec_config/import.sh" }, { "resource": "awscc_route53resolver_resolver_query_logging_config", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_route53resolver_resolver_query_logging_config/import.sh" }, { "resource": "awscc_route53resolver_resolver_query_logging_config_association", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_route53resolver_resolver_query_logging_config_association/import.sh" }, { "resource": "awscc_route53resolver_resolver_rule", - "identifier": "ResolverRuleId", + "identifier": ["ResolverRuleId"], "path": "./examples/resources/awscc_route53resolver_resolver_rule/import.sh" }, { "resource": "awscc_route53resolver_resolver_rule_association", - "identifier": "ResolverRuleAssociationId", + "identifier": ["ResolverRuleAssociationId"], "path": "./examples/resources/awscc_route53resolver_resolver_rule_association/import.sh" }, { "resource": "awscc_s3_access_grant", - "identifier": "AccessGrantId", + "identifier": ["AccessGrantId"], "path": "./examples/resources/awscc_s3_access_grant/import.sh" }, { "resource": "awscc_s3_access_grants_instance", - "identifier": "AccessGrantsInstanceArn", + "identifier": ["AccessGrantsInstanceArn"], "path": "./examples/resources/awscc_s3_access_grants_instance/import.sh" }, { "resource": "awscc_s3_access_grants_location", - "identifier": "AccessGrantsLocationId", + "identifier": ["AccessGrantsLocationId"], "path": "./examples/resources/awscc_s3_access_grants_location/import.sh" }, { "resource": "awscc_s3_access_point", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_s3_access_point/import.sh" }, { "resource": "awscc_s3_bucket", - "identifier": "BucketName", + "identifier": ["BucketName"], "path": "./examples/resources/awscc_s3_bucket/import.sh" }, { "resource": "awscc_s3_bucket_policy", - "identifier": "Bucket", + "identifier": ["Bucket"], "path": "./examples/resources/awscc_s3_bucket_policy/import.sh" }, { "resource": "awscc_s3_multi_region_access_point", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_s3_multi_region_access_point/import.sh" }, { "resource": "awscc_s3_multi_region_access_point_policy", - "identifier": "MrapName", + "identifier": ["MrapName"], "path": "./examples/resources/awscc_s3_multi_region_access_point_policy/import.sh" }, { "resource": "awscc_s3_storage_lens", - "identifier": "StorageLensConfiguration/Id", + "identifier": ["StorageLensConfiguration/Id"], "path": "./examples/resources/awscc_s3_storage_lens/import.sh" }, { "resource": "awscc_s3_storage_lens_group", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_s3_storage_lens_group/import.sh" }, { "resource": "awscc_s3express_bucket_policy", - "identifier": "Bucket", + "identifier": ["Bucket"], "path": "./examples/resources/awscc_s3express_bucket_policy/import.sh" }, { "resource": "awscc_s3express_directory_bucket", - "identifier": "BucketName", + "identifier": ["BucketName"], "path": "./examples/resources/awscc_s3express_directory_bucket/import.sh" }, { "resource": "awscc_s3objectlambda_access_point", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_s3objectlambda_access_point/import.sh" }, { "resource": "awscc_s3objectlambda_access_point_policy", - "identifier": "ObjectLambdaAccessPoint", + "identifier": ["ObjectLambdaAccessPoint"], "path": "./examples/resources/awscc_s3objectlambda_access_point_policy/import.sh" }, { "resource": "awscc_s3outposts_access_point", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_s3outposts_access_point/import.sh" }, { "resource": "awscc_s3outposts_bucket", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_s3outposts_bucket/import.sh" }, { "resource": "awscc_s3outposts_bucket_policy", - "identifier": "Bucket", + "identifier": ["Bucket"], "path": "./examples/resources/awscc_s3outposts_bucket_policy/import.sh" }, { "resource": "awscc_s3outposts_endpoint", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_s3outposts_endpoint/import.sh" }, { "resource": "awscc_ses_configuration_set", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_ses_configuration_set/import.sh" }, { "resource": "awscc_ses_configuration_set_event_destination", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ses_configuration_set_event_destination/import.sh" }, { "resource": "awscc_ses_contact_list", - "identifier": "ContactListName", + "identifier": ["ContactListName"], "path": "./examples/resources/awscc_ses_contact_list/import.sh" }, { "resource": "awscc_ses_dedicated_ip_pool", - "identifier": "PoolName", + "identifier": ["PoolName"], "path": "./examples/resources/awscc_ses_dedicated_ip_pool/import.sh" }, { "resource": "awscc_ses_email_identity", - "identifier": "EmailIdentity", + "identifier": ["EmailIdentity"], "path": "./examples/resources/awscc_ses_email_identity/import.sh" }, { "resource": "awscc_ses_mail_manager_addon_instance", - "identifier": "AddonInstanceId", + "identifier": ["AddonInstanceId"], "path": "./examples/resources/awscc_ses_mail_manager_addon_instance/import.sh" }, { "resource": "awscc_ses_mail_manager_addon_subscription", - "identifier": "AddonSubscriptionId", + "identifier": ["AddonSubscriptionId"], "path": "./examples/resources/awscc_ses_mail_manager_addon_subscription/import.sh" }, { "resource": "awscc_ses_mail_manager_archive", - "identifier": "ArchiveId", + "identifier": ["ArchiveId"], "path": "./examples/resources/awscc_ses_mail_manager_archive/import.sh" }, { "resource": "awscc_ses_mail_manager_ingress_point", - "identifier": "IngressPointId", + "identifier": ["IngressPointId"], "path": "./examples/resources/awscc_ses_mail_manager_ingress_point/import.sh" }, { "resource": "awscc_ses_mail_manager_relay", - "identifier": "RelayId", + "identifier": ["RelayId"], "path": "./examples/resources/awscc_ses_mail_manager_relay/import.sh" }, { "resource": "awscc_ses_mail_manager_rule_set", - "identifier": "RuleSetId", + "identifier": ["RuleSetId"], "path": "./examples/resources/awscc_ses_mail_manager_rule_set/import.sh" }, { "resource": "awscc_ses_mail_manager_traffic_policy", - "identifier": "TrafficPolicyId", + "identifier": ["TrafficPolicyId"], "path": "./examples/resources/awscc_ses_mail_manager_traffic_policy/import.sh" }, { "resource": "awscc_ses_template", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ses_template/import.sh" }, { "resource": "awscc_ses_vdm_attributes", - "identifier": "VdmAttributesResourceId", + "identifier": ["VdmAttributesResourceId"], "path": "./examples/resources/awscc_ses_vdm_attributes/import.sh" }, { "resource": "awscc_sns_topic", - "identifier": "TopicArn", + "identifier": ["TopicArn"], "path": "./examples/resources/awscc_sns_topic/import.sh" }, { "resource": "awscc_sns_topic_inline_policy", - "identifier": "TopicArn", + "identifier": ["TopicArn"], "path": "./examples/resources/awscc_sns_topic_inline_policy/import.sh" }, { "resource": "awscc_sqs_queue", - "identifier": "QueueUrl", + "identifier": ["QueueUrl"], "path": "./examples/resources/awscc_sqs_queue/import.sh" }, { "resource": "awscc_sqs_queue_inline_policy", - "identifier": "Queue", + "identifier": ["Queue"], "path": "./examples/resources/awscc_sqs_queue_inline_policy/import.sh" }, { "resource": "awscc_ssm_association", - "identifier": "AssociationId", + "identifier": ["AssociationId"], "path": "./examples/resources/awscc_ssm_association/import.sh" }, { "resource": "awscc_ssm_document", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_ssm_document/import.sh" }, { "resource": "awscc_ssm_parameter", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_ssm_parameter/import.sh" }, { "resource": "awscc_ssm_patch_baseline", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_ssm_patch_baseline/import.sh" }, { "resource": "awscc_ssm_resource_data_sync", - "identifier": "SyncName", + "identifier": ["SyncName"], "path": "./examples/resources/awscc_ssm_resource_data_sync/import.sh" }, { "resource": "awscc_ssm_resource_policy", - "identifier": "PolicyId,ResourceArn", + "identifier": ["PolicyId","ResourceArn"], "path": "./examples/resources/awscc_ssm_resource_policy/import.sh" }, { "resource": "awscc_ssmcontacts_contact", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ssmcontacts_contact/import.sh" }, { "resource": "awscc_ssmcontacts_contact_channel", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ssmcontacts_contact_channel/import.sh" }, { "resource": "awscc_ssmcontacts_plan", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ssmcontacts_plan/import.sh" }, { "resource": "awscc_ssmcontacts_rotation", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ssmcontacts_rotation/import.sh" }, { "resource": "awscc_ssmincidents_replication_set", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ssmincidents_replication_set/import.sh" }, { "resource": "awscc_ssmincidents_response_plan", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_ssmincidents_response_plan/import.sh" }, { "resource": "awscc_sso_application", - "identifier": "ApplicationArn", + "identifier": ["ApplicationArn"], "path": "./examples/resources/awscc_sso_application/import.sh" }, { "resource": "awscc_sso_application_assignment", - "identifier": "ApplicationArn,PrincipalType,PrincipalId", + "identifier": ["ApplicationArn","PrincipalType","PrincipalId"], "path": "./examples/resources/awscc_sso_application_assignment/import.sh" }, { "resource": "awscc_sso_assignment", - "identifier": "InstanceArn,TargetId,TargetType,PermissionSetArn,PrincipalType,PrincipalId", + "identifier": ["InstanceArn","TargetId","TargetType","PermissionSetArn","PrincipalType","PrincipalId"], "path": "./examples/resources/awscc_sso_assignment/import.sh" }, { "resource": "awscc_sso_instance", - "identifier": "InstanceArn", + "identifier": ["InstanceArn"], "path": "./examples/resources/awscc_sso_instance/import.sh" }, { "resource": "awscc_sso_instance_access_control_attribute_configuration", - "identifier": "InstanceArn", + "identifier": ["InstanceArn"], "path": "./examples/resources/awscc_sso_instance_access_control_attribute_configuration/import.sh" }, { "resource": "awscc_sso_permission_set", - "identifier": "InstanceArn,PermissionSetArn", + "identifier": ["InstanceArn","PermissionSetArn"], "path": "./examples/resources/awscc_sso_permission_set/import.sh" }, { "resource": "awscc_sagemaker_app", - "identifier": "AppName,AppType,DomainId,UserProfileName", + "identifier": ["AppName","AppType","DomainId","UserProfileName"], "path": "./examples/resources/awscc_sagemaker_app/import.sh" }, { "resource": "awscc_sagemaker_app_image_config", - "identifier": "AppImageConfigName", + "identifier": ["AppImageConfigName"], "path": "./examples/resources/awscc_sagemaker_app_image_config/import.sh" }, { "resource": "awscc_sagemaker_data_quality_job_definition", - "identifier": "JobDefinitionArn", + "identifier": ["JobDefinitionArn"], "path": "./examples/resources/awscc_sagemaker_data_quality_job_definition/import.sh" }, { "resource": "awscc_sagemaker_device", - "identifier": "Device/DeviceName", + "identifier": ["Device/DeviceName"], "path": "./examples/resources/awscc_sagemaker_device/import.sh" }, { "resource": "awscc_sagemaker_device_fleet", - "identifier": "DeviceFleetName", + "identifier": ["DeviceFleetName"], "path": "./examples/resources/awscc_sagemaker_device_fleet/import.sh" }, { "resource": "awscc_sagemaker_domain", - "identifier": "DomainId", + "identifier": ["DomainId"], "path": "./examples/resources/awscc_sagemaker_domain/import.sh" }, { "resource": "awscc_sagemaker_feature_group", - "identifier": "FeatureGroupName", + "identifier": ["FeatureGroupName"], "path": "./examples/resources/awscc_sagemaker_feature_group/import.sh" }, { "resource": "awscc_sagemaker_image", - "identifier": "ImageArn", + "identifier": ["ImageArn"], "path": "./examples/resources/awscc_sagemaker_image/import.sh" }, { "resource": "awscc_sagemaker_image_version", - "identifier": "ImageVersionArn", + "identifier": ["ImageVersionArn"], "path": "./examples/resources/awscc_sagemaker_image_version/import.sh" }, { "resource": "awscc_sagemaker_inference_component", - "identifier": "InferenceComponentArn", + "identifier": ["InferenceComponentArn"], "path": "./examples/resources/awscc_sagemaker_inference_component/import.sh" }, { "resource": "awscc_sagemaker_inference_experiment", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_sagemaker_inference_experiment/import.sh" }, { "resource": "awscc_sagemaker_mlflow_tracking_server", - "identifier": "TrackingServerName", + "identifier": ["TrackingServerName"], "path": "./examples/resources/awscc_sagemaker_mlflow_tracking_server/import.sh" }, { "resource": "awscc_sagemaker_model_bias_job_definition", - "identifier": "JobDefinitionArn", + "identifier": ["JobDefinitionArn"], "path": "./examples/resources/awscc_sagemaker_model_bias_job_definition/import.sh" }, { "resource": "awscc_sagemaker_model_explainability_job_definition", - "identifier": "JobDefinitionArn", + "identifier": ["JobDefinitionArn"], "path": "./examples/resources/awscc_sagemaker_model_explainability_job_definition/import.sh" }, { "resource": "awscc_sagemaker_model_package", - "identifier": "ModelPackageArn", + "identifier": ["ModelPackageArn"], "path": "./examples/resources/awscc_sagemaker_model_package/import.sh" }, { "resource": "awscc_sagemaker_model_package_group", - "identifier": "ModelPackageGroupArn", + "identifier": ["ModelPackageGroupArn"], "path": "./examples/resources/awscc_sagemaker_model_package_group/import.sh" }, { "resource": "awscc_sagemaker_model_quality_job_definition", - "identifier": "JobDefinitionArn", + "identifier": ["JobDefinitionArn"], "path": "./examples/resources/awscc_sagemaker_model_quality_job_definition/import.sh" }, { "resource": "awscc_sagemaker_monitoring_schedule", - "identifier": "MonitoringScheduleArn", + "identifier": ["MonitoringScheduleArn"], "path": "./examples/resources/awscc_sagemaker_monitoring_schedule/import.sh" }, { "resource": "awscc_sagemaker_pipeline", - "identifier": "PipelineName", + "identifier": ["PipelineName"], "path": "./examples/resources/awscc_sagemaker_pipeline/import.sh" }, { "resource": "awscc_sagemaker_project", - "identifier": "ProjectArn", + "identifier": ["ProjectArn"], "path": "./examples/resources/awscc_sagemaker_project/import.sh" }, { "resource": "awscc_sagemaker_space", - "identifier": "DomainId,SpaceName", + "identifier": ["DomainId","SpaceName"], "path": "./examples/resources/awscc_sagemaker_space/import.sh" }, { "resource": "awscc_sagemaker_studio_lifecycle_config", - "identifier": "StudioLifecycleConfigName", + "identifier": ["StudioLifecycleConfigName"], "path": "./examples/resources/awscc_sagemaker_studio_lifecycle_config/import.sh" }, { "resource": "awscc_sagemaker_user_profile", - "identifier": "UserProfileName,DomainId", + "identifier": ["UserProfileName","DomainId"], "path": "./examples/resources/awscc_sagemaker_user_profile/import.sh" }, { "resource": "awscc_scheduler_schedule_group", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_scheduler_schedule_group/import.sh" }, { "resource": "awscc_secretsmanager_resource_policy", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_secretsmanager_resource_policy/import.sh" }, { "resource": "awscc_secretsmanager_secret", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_secretsmanager_secret/import.sh" }, { "resource": "awscc_securityhub_configuration_policy", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_securityhub_configuration_policy/import.sh" }, { "resource": "awscc_securityhub_delegated_admin", - "identifier": "DelegatedAdminIdentifier", + "identifier": ["DelegatedAdminIdentifier"], "path": "./examples/resources/awscc_securityhub_delegated_admin/import.sh" }, { "resource": "awscc_securityhub_finding_aggregator", - "identifier": "FindingAggregatorArn", + "identifier": ["FindingAggregatorArn"], "path": "./examples/resources/awscc_securityhub_finding_aggregator/import.sh" }, { "resource": "awscc_securityhub_hub", - "identifier": "ARN", + "identifier": ["ARN"], "path": "./examples/resources/awscc_securityhub_hub/import.sh" }, { "resource": "awscc_securityhub_insight", - "identifier": "InsightArn", + "identifier": ["InsightArn"], "path": "./examples/resources/awscc_securityhub_insight/import.sh" }, { "resource": "awscc_securityhub_organization_configuration", - "identifier": "OrganizationConfigurationIdentifier", + "identifier": ["OrganizationConfigurationIdentifier"], "path": "./examples/resources/awscc_securityhub_organization_configuration/import.sh" }, { "resource": "awscc_securityhub_policy_association", - "identifier": "AssociationIdentifier", + "identifier": ["AssociationIdentifier"], "path": "./examples/resources/awscc_securityhub_policy_association/import.sh" }, { "resource": "awscc_securityhub_product_subscription", - "identifier": "ProductSubscriptionArn", + "identifier": ["ProductSubscriptionArn"], "path": "./examples/resources/awscc_securityhub_product_subscription/import.sh" }, { "resource": "awscc_securityhub_security_control", - "identifier": "SecurityControlId", + "identifier": ["SecurityControlId"], "path": "./examples/resources/awscc_securityhub_security_control/import.sh" }, { "resource": "awscc_securityhub_standard", - "identifier": "StandardsSubscriptionArn", + "identifier": ["StandardsSubscriptionArn"], "path": "./examples/resources/awscc_securityhub_standard/import.sh" }, { "resource": "awscc_securitylake_aws_log_source", - "identifier": "SourceName,SourceVersion", + "identifier": ["SourceName","SourceVersion"], "path": "./examples/resources/awscc_securitylake_aws_log_source/import.sh" }, { "resource": "awscc_securitylake_data_lake", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_securitylake_data_lake/import.sh" }, { "resource": "awscc_securitylake_subscriber_notification", - "identifier": "SubscriberArn", + "identifier": ["SubscriberArn"], "path": "./examples/resources/awscc_securitylake_subscriber_notification/import.sh" }, { "resource": "awscc_servicecatalog_cloudformation_provisioned_product", - "identifier": "ProvisionedProductId", + "identifier": ["ProvisionedProductId"], "path": "./examples/resources/awscc_servicecatalog_cloudformation_provisioned_product/import.sh" }, { "resource": "awscc_servicecatalog_service_action", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_servicecatalog_service_action/import.sh" }, { "resource": "awscc_servicecatalog_service_action_association", - "identifier": "ProductId,ProvisioningArtifactId,ServiceActionId", + "identifier": ["ProductId","ProvisioningArtifactId","ServiceActionId"], "path": "./examples/resources/awscc_servicecatalog_service_action_association/import.sh" }, { "resource": "awscc_servicecatalogappregistry_application", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_servicecatalogappregistry_application/import.sh" }, { "resource": "awscc_servicecatalogappregistry_attribute_group", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_servicecatalogappregistry_attribute_group/import.sh" }, { "resource": "awscc_servicecatalogappregistry_attribute_group_association", - "identifier": "ApplicationArn,AttributeGroupArn", + "identifier": ["ApplicationArn","AttributeGroupArn"], "path": "./examples/resources/awscc_servicecatalogappregistry_attribute_group_association/import.sh" }, { "resource": "awscc_servicecatalogappregistry_resource_association", - "identifier": "ApplicationArn,ResourceArn,ResourceType", + "identifier": ["ApplicationArn","ResourceArn","ResourceType"], "path": "./examples/resources/awscc_servicecatalogappregistry_resource_association/import.sh" }, { "resource": "awscc_shield_drt_access", - "identifier": "AccountId", + "identifier": ["AccountId"], "path": "./examples/resources/awscc_shield_drt_access/import.sh" }, { "resource": "awscc_shield_proactive_engagement", - "identifier": "AccountId", + "identifier": ["AccountId"], "path": "./examples/resources/awscc_shield_proactive_engagement/import.sh" }, { "resource": "awscc_shield_protection", - "identifier": "ProtectionArn", + "identifier": ["ProtectionArn"], "path": "./examples/resources/awscc_shield_protection/import.sh" }, { "resource": "awscc_shield_protection_group", - "identifier": "ProtectionGroupArn", + "identifier": ["ProtectionGroupArn"], "path": "./examples/resources/awscc_shield_protection_group/import.sh" }, { "resource": "awscc_signer_profile_permission", - "identifier": "StatementId,ProfileName", + "identifier": ["StatementId","ProfileName"], "path": "./examples/resources/awscc_signer_profile_permission/import.sh" }, { "resource": "awscc_signer_signing_profile", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_signer_signing_profile/import.sh" }, { "resource": "awscc_simspaceweaver_simulation", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_simspaceweaver_simulation/import.sh" }, { "resource": "awscc_stepfunctions_activity", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_stepfunctions_activity/import.sh" }, { "resource": "awscc_stepfunctions_state_machine", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_stepfunctions_state_machine/import.sh" }, { "resource": "awscc_stepfunctions_state_machine_alias", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_stepfunctions_state_machine_alias/import.sh" }, { "resource": "awscc_stepfunctions_state_machine_version", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_stepfunctions_state_machine_version/import.sh" }, { "resource": "awscc_supportapp_account_alias", - "identifier": "AccountAliasResourceId", + "identifier": ["AccountAliasResourceId"], "path": "./examples/resources/awscc_supportapp_account_alias/import.sh" }, { "resource": "awscc_supportapp_slack_channel_configuration", - "identifier": "TeamId,ChannelId", + "identifier": ["TeamId","ChannelId"], "path": "./examples/resources/awscc_supportapp_slack_channel_configuration/import.sh" }, { "resource": "awscc_supportapp_slack_workspace_configuration", - "identifier": "TeamId", + "identifier": ["TeamId"], "path": "./examples/resources/awscc_supportapp_slack_workspace_configuration/import.sh" }, { "resource": "awscc_synthetics_canary", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_synthetics_canary/import.sh" }, { "resource": "awscc_synthetics_group", - "identifier": "Name", + "identifier": ["Name"], "path": "./examples/resources/awscc_synthetics_group/import.sh" }, { "resource": "awscc_systemsmanagersap_application", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_systemsmanagersap_application/import.sh" }, { "resource": "awscc_timestream_database", - "identifier": "DatabaseName", + "identifier": ["DatabaseName"], "path": "./examples/resources/awscc_timestream_database/import.sh" }, { "resource": "awscc_timestream_influx_db_instance", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_timestream_influx_db_instance/import.sh" }, { "resource": "awscc_timestream_scheduled_query", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_timestream_scheduled_query/import.sh" }, { "resource": "awscc_timestream_table", - "identifier": "DatabaseName,TableName", + "identifier": ["DatabaseName","TableName"], "path": "./examples/resources/awscc_timestream_table/import.sh" }, { "resource": "awscc_transfer_agreement", - "identifier": "AgreementId,ServerId", + "identifier": ["AgreementId","ServerId"], "path": "./examples/resources/awscc_transfer_agreement/import.sh" }, { "resource": "awscc_transfer_certificate", - "identifier": "CertificateId", + "identifier": ["CertificateId"], "path": "./examples/resources/awscc_transfer_certificate/import.sh" }, { "resource": "awscc_transfer_connector", - "identifier": "ConnectorId", + "identifier": ["ConnectorId"], "path": "./examples/resources/awscc_transfer_connector/import.sh" }, { "resource": "awscc_transfer_profile", - "identifier": "ProfileId", + "identifier": ["ProfileId"], "path": "./examples/resources/awscc_transfer_profile/import.sh" }, { "resource": "awscc_transfer_workflow", - "identifier": "WorkflowId", + "identifier": ["WorkflowId"], "path": "./examples/resources/awscc_transfer_workflow/import.sh" }, { "resource": "awscc_verifiedpermissions_identity_source", - "identifier": "IdentitySourceId,PolicyStoreId", + "identifier": ["IdentitySourceId","PolicyStoreId"], "path": "./examples/resources/awscc_verifiedpermissions_identity_source/import.sh" }, { "resource": "awscc_verifiedpermissions_policy", - "identifier": "PolicyId,PolicyStoreId", + "identifier": ["PolicyId","PolicyStoreId"], "path": "./examples/resources/awscc_verifiedpermissions_policy/import.sh" }, { "resource": "awscc_verifiedpermissions_policy_store", - "identifier": "PolicyStoreId", + "identifier": ["PolicyStoreId"], "path": "./examples/resources/awscc_verifiedpermissions_policy_store/import.sh" }, { "resource": "awscc_verifiedpermissions_policy_template", - "identifier": "PolicyStoreId,PolicyTemplateId", + "identifier": ["PolicyStoreId","PolicyTemplateId"], "path": "./examples/resources/awscc_verifiedpermissions_policy_template/import.sh" }, { "resource": "awscc_voiceid_domain", - "identifier": "DomainId", + "identifier": ["DomainId"], "path": "./examples/resources/awscc_voiceid_domain/import.sh" }, { "resource": "awscc_vpclattice_access_log_subscription", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_vpclattice_access_log_subscription/import.sh" }, { "resource": "awscc_vpclattice_auth_policy", - "identifier": "ResourceIdentifier", + "identifier": ["ResourceIdentifier"], "path": "./examples/resources/awscc_vpclattice_auth_policy/import.sh" }, { "resource": "awscc_vpclattice_listener", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_vpclattice_listener/import.sh" }, { "resource": "awscc_vpclattice_resource_policy", - "identifier": "ResourceArn", + "identifier": ["ResourceArn"], "path": "./examples/resources/awscc_vpclattice_resource_policy/import.sh" }, { "resource": "awscc_vpclattice_rule", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_vpclattice_rule/import.sh" }, { "resource": "awscc_vpclattice_service", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_vpclattice_service/import.sh" }, { "resource": "awscc_vpclattice_service_network", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_vpclattice_service_network/import.sh" }, { "resource": "awscc_vpclattice_service_network_service_association", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_vpclattice_service_network_service_association/import.sh" }, { "resource": "awscc_vpclattice_service_network_vpc_association", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_vpclattice_service_network_vpc_association/import.sh" }, { "resource": "awscc_vpclattice_target_group", - "identifier": "Arn", + "identifier": ["Arn"], "path": "./examples/resources/awscc_vpclattice_target_group/import.sh" }, { "resource": "awscc_wafv2_ip_set", - "identifier": "Name,Id,Scope", + "identifier": ["Name","Id","Scope"], "path": "./examples/resources/awscc_wafv2_ip_set/import.sh" }, { "resource": "awscc_wafv2_logging_configuration", - "identifier": "ResourceArn", + "identifier": ["ResourceArn"], "path": "./examples/resources/awscc_wafv2_logging_configuration/import.sh" }, { "resource": "awscc_wafv2_regex_pattern_set", - "identifier": "Name,Id,Scope", + "identifier": ["Name","Id","Scope"], "path": "./examples/resources/awscc_wafv2_regex_pattern_set/import.sh" }, { "resource": "awscc_wafv2_web_acl_association", - "identifier": "ResourceArn,WebACLArn", + "identifier": ["ResourceArn","WebACLArn"], "path": "./examples/resources/awscc_wafv2_web_acl_association/import.sh" }, { "resource": "awscc_wisdom_assistant", - "identifier": "AssistantId", + "identifier": ["AssistantId"], "path": "./examples/resources/awscc_wisdom_assistant/import.sh" }, { "resource": "awscc_wisdom_assistant_association", - "identifier": "AssistantAssociationId,AssistantId", + "identifier": ["AssistantAssociationId","AssistantId"], "path": "./examples/resources/awscc_wisdom_assistant_association/import.sh" }, { "resource": "awscc_wisdom_knowledge_base", - "identifier": "KnowledgeBaseId", + "identifier": ["KnowledgeBaseId"], "path": "./examples/resources/awscc_wisdom_knowledge_base/import.sh" }, { "resource": "awscc_workspaces_connection_alias", - "identifier": "AliasId", + "identifier": ["AliasId"], "path": "./examples/resources/awscc_workspaces_connection_alias/import.sh" }, { "resource": "awscc_workspaces_workspaces_pool", - "identifier": "PoolId", + "identifier": ["PoolId"], "path": "./examples/resources/awscc_workspaces_workspaces_pool/import.sh" }, { "resource": "awscc_workspacesthinclient_environment", - "identifier": "Id", + "identifier": ["Id"], "path": "./examples/resources/awscc_workspacesthinclient_environment/import.sh" }, { "resource": "awscc_workspacesweb_browser_settings", - "identifier": "BrowserSettingsArn", + "identifier": ["BrowserSettingsArn"], "path": "./examples/resources/awscc_workspacesweb_browser_settings/import.sh" }, { "resource": "awscc_workspacesweb_identity_provider", - "identifier": "IdentityProviderArn", + "identifier": ["IdentityProviderArn"], "path": "./examples/resources/awscc_workspacesweb_identity_provider/import.sh" }, { "resource": "awscc_workspacesweb_ip_access_settings", - "identifier": "IpAccessSettingsArn", + "identifier": ["IpAccessSettingsArn"], "path": "./examples/resources/awscc_workspacesweb_ip_access_settings/import.sh" }, { "resource": "awscc_workspacesweb_network_settings", - "identifier": "NetworkSettingsArn", + "identifier": ["NetworkSettingsArn"], "path": "./examples/resources/awscc_workspacesweb_network_settings/import.sh" }, { "resource": "awscc_workspacesweb_portal", - "identifier": "PortalArn", + "identifier": ["PortalArn"], "path": "./examples/resources/awscc_workspacesweb_portal/import.sh" }, { "resource": "awscc_workspacesweb_trust_store", - "identifier": "TrustStoreArn", + "identifier": ["TrustStoreArn"], "path": "./examples/resources/awscc_workspacesweb_trust_store/import.sh" }, { "resource": "awscc_workspacesweb_user_access_logging_settings", - "identifier": "UserAccessLoggingSettingsArn", + "identifier": ["UserAccessLoggingSettingsArn"], "path": "./examples/resources/awscc_workspacesweb_user_access_logging_settings/import.sh" }, { "resource": "awscc_workspacesweb_user_settings", - "identifier": "UserSettingsArn", + "identifier": ["UserSettingsArn"], "path": "./examples/resources/awscc_workspacesweb_user_settings/import.sh" }, { "resource": "awscc_xray_group", - "identifier": "GroupARN", + "identifier": ["GroupARN"], "path": "./examples/resources/awscc_xray_group/import.sh" }, { "resource": "awscc_xray_resource_policy", - "identifier": "PolicyName", + "identifier": ["PolicyName"], "path": "./examples/resources/awscc_xray_resource_policy/import.sh" }, { "resource": "awscc_xray_sampling_rule", - "identifier": "RuleARN", + "identifier": ["RuleARN"], "path": "./examples/resources/awscc_xray_sampling_rule/import.sh" } ]