@aws-sdk/client-vpc-lattice 3.926.0 → 3.928.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +250 -0
  3. package/dist-es/VPCLattice.js +8 -0
  4. package/dist-es/commands/DeleteDomainVerificationCommand.js +22 -0
  5. package/dist-es/commands/GetDomainVerificationCommand.js +22 -0
  6. package/dist-es/commands/ListDomainVerificationsCommand.js +22 -0
  7. package/dist-es/commands/StartDomainVerificationCommand.js +22 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/models_0.js +11 -0
  10. package/dist-es/pagination/ListDomainVerificationsPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/protocols/Aws_restJson1.js +158 -0
  13. package/dist-types/VPCLattice.d.ts +29 -0
  14. package/dist-types/VPCLatticeClient.d.ts +6 -2
  15. package/dist-types/commands/CreateResourceConfigurationCommand.d.ts +7 -0
  16. package/dist-types/commands/CreateServiceNetworkResourceAssociationCommand.d.ts +2 -0
  17. package/dist-types/commands/CreateServiceNetworkVpcAssociationCommand.d.ts +14 -0
  18. package/dist-types/commands/DeleteDomainVerificationCommand.d.ts +87 -0
  19. package/dist-types/commands/GetDomainVerificationCommand.d.ts +101 -0
  20. package/dist-types/commands/GetResourceConfigurationCommand.d.ts +4 -0
  21. package/dist-types/commands/GetServiceNetworkResourceAssociationCommand.d.ts +2 -0
  22. package/dist-types/commands/GetServiceNetworkVpcAssociationCommand.d.ts +7 -0
  23. package/dist-types/commands/ListDomainVerificationsCommand.d.ts +107 -0
  24. package/dist-types/commands/ListResourceConfigurationsCommand.d.ts +4 -0
  25. package/dist-types/commands/ListServiceNetworkResourceAssociationsCommand.d.ts +1 -0
  26. package/dist-types/commands/ListServiceNetworkVpcAssociationsCommand.d.ts +7 -0
  27. package/dist-types/commands/StartDomainVerificationCommand.d.ts +103 -0
  28. package/dist-types/commands/index.d.ts +4 -0
  29. package/dist-types/models/models_0.d.ts +395 -0
  30. package/dist-types/pagination/ListDomainVerificationsPaginator.d.ts +7 -0
  31. package/dist-types/pagination/index.d.ts +1 -0
  32. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  33. package/dist-types/ts3.4/VPCLattice.d.ts +69 -0
  34. package/dist-types/ts3.4/VPCLatticeClient.d.ts +24 -0
  35. package/dist-types/ts3.4/commands/DeleteDomainVerificationCommand.d.ts +51 -0
  36. package/dist-types/ts3.4/commands/GetDomainVerificationCommand.d.ts +51 -0
  37. package/dist-types/ts3.4/commands/ListDomainVerificationsCommand.d.ts +51 -0
  38. package/dist-types/ts3.4/commands/StartDomainVerificationCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  40. package/dist-types/ts3.4/models/models_0.d.ts +98 -0
  41. package/dist-types/ts3.4/pagination/ListDomainVerificationsPaginator.d.ts +11 -0
  42. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  43. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  44. package/package.json +5 -5
@@ -1187,6 +1187,21 @@ export interface CreateResourceConfigurationRequest {
1187
1187
  * @public
1188
1188
  */
1189
1189
  allowAssociationToShareableServiceNetwork?: boolean | undefined;
1190
+ /**
1191
+ * <p> A custom domain name for your resource configuration. Additionally, provide a DomainVerificationID to prove your ownership of a domain. </p>
1192
+ * @public
1193
+ */
1194
+ customDomainName?: string | undefined;
1195
+ /**
1196
+ * <p> (GROUP) The group domain for a group resource configuration. Any domains that you create for the child resource are subdomains of the group domain. Child resources inherit the verification status of the domain. </p>
1197
+ * @public
1198
+ */
1199
+ groupDomain?: string | undefined;
1200
+ /**
1201
+ * <p> The domain verification ID of your verified custom domain name. If you don't provide an ID, you must configure the DNS settings yourself. </p>
1202
+ * @public
1203
+ */
1204
+ domainVerificationIdentifier?: string | undefined;
1190
1205
  /**
1191
1206
  * <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you retry a request that completed successfully using the same client token and parameters, the retry succeeds without performing any actions. If the parameters aren't identical, the retry fails.</p>
1192
1207
  * @public
@@ -1305,6 +1320,26 @@ export interface CreateResourceConfigurationResponse {
1305
1320
  * @public
1306
1321
  */
1307
1322
  failureReason?: string | undefined;
1323
+ /**
1324
+ * <p> The custom domain name for your resource configuration. </p>
1325
+ * @public
1326
+ */
1327
+ customDomainName?: string | undefined;
1328
+ /**
1329
+ * <p> The domain name verification ID. </p>
1330
+ * @public
1331
+ */
1332
+ domainVerificationId?: string | undefined;
1333
+ /**
1334
+ * <p> (GROUP) The group domain for a group resource configuration. Any domains that you create for the child resource are subdomains of the group domain. Child resources inherit the verification status of the domain. </p>
1335
+ * @public
1336
+ */
1337
+ groupDomain?: string | undefined;
1338
+ /**
1339
+ * <p> The verification ID ARN </p>
1340
+ * @public
1341
+ */
1342
+ domainVerificationArn?: string | undefined;
1308
1343
  }
1309
1344
  /**
1310
1345
  * @public
@@ -1757,6 +1792,11 @@ export interface CreateServiceNetworkResourceAssociationRequest {
1757
1792
  * @public
1758
1793
  */
1759
1794
  serviceNetworkIdentifier: string | undefined;
1795
+ /**
1796
+ * <p> Indicates if private DNS is enabled for the service network resource association. </p>
1797
+ * @public
1798
+ */
1799
+ privateDnsEnabled?: boolean | undefined;
1760
1800
  /**
1761
1801
  * <p>A key-value pair to associate with a resource.</p>
1762
1802
  * @public
@@ -1821,6 +1861,11 @@ export interface CreateServiceNetworkResourceAssociationResponse {
1821
1861
  * @public
1822
1862
  */
1823
1863
  createdBy?: string | undefined;
1864
+ /**
1865
+ * <p> Indicates if private DNS is is enabled for the service network resource association. </p>
1866
+ * @public
1867
+ */
1868
+ privateDnsEnabled?: boolean | undefined;
1824
1869
  }
1825
1870
  /**
1826
1871
  * @public
@@ -1912,6 +1957,36 @@ export interface CreateServiceNetworkServiceAssociationResponse {
1912
1957
  */
1913
1958
  dnsEntry?: DnsEntry | undefined;
1914
1959
  }
1960
+ /**
1961
+ * @public
1962
+ * @enum
1963
+ */
1964
+ export declare const PrivateDnsPreference: {
1965
+ readonly ALL_DOMAINS: "ALL_DOMAINS";
1966
+ readonly SPECIFIED_DOMAINS_ONLY: "SPECIFIED_DOMAINS_ONLY";
1967
+ readonly VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS: "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS";
1968
+ readonly VERIFIED_DOMAINS_ONLY: "VERIFIED_DOMAINS_ONLY";
1969
+ };
1970
+ /**
1971
+ * @public
1972
+ */
1973
+ export type PrivateDnsPreference = (typeof PrivateDnsPreference)[keyof typeof PrivateDnsPreference];
1974
+ /**
1975
+ * <p> The DNS configuration options. </p>
1976
+ * @public
1977
+ */
1978
+ export interface DnsOptions {
1979
+ /**
1980
+ * <p> The preference for which private domains have a private hosted zone created for and associated with the specified VPC. Only supported when private DNS is enabled and when the VPC endpoint type is ServiceNetwork or Resource. </p> <ul> <li> <p> <code>ALL_DOMAINS</code> - VPC Lattice provisions private hosted zones for all custom domain names.</p> </li> <li> <p> <code>VERIFIED_DOMAINS_ONLY</code> - VPC Lattice provisions a private hosted zone only if custom domain name has been verified by the provider.</p> </li> <li> <p> <code>VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS</code> - VPC Lattice provisions private hosted zones for all verified custom domain names and other domain names that the resource consumer specifies. The resource consumer specifies the domain names in the privateDnsSpecifiedDomains parameter.</p> </li> <li> <p> <code>SPECIFIED_DOMAINS_ONLY</code> - VPC Lattice provisions a private hosted zone for domain names specified by the resource consumer. The resource consumer specifies the domain names in the privateDnsSpecifiedDomains parameter.</p> </li> </ul>
1981
+ * @public
1982
+ */
1983
+ privateDnsPreference?: PrivateDnsPreference | undefined;
1984
+ /**
1985
+ * <p> Indicates which of the private domains to create private hosted zones for and associate with the specified VPC. Only supported when private DNS is enabled and the private DNS preference is <code>VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS</code> or <code>SPECIFIED_DOMAINS_ONLY</code>. </p>
1986
+ * @public
1987
+ */
1988
+ privateDnsSpecifiedDomains?: string[] | undefined;
1989
+ }
1915
1990
  /**
1916
1991
  * @public
1917
1992
  */
@@ -1931,6 +2006,11 @@ export interface CreateServiceNetworkVpcAssociationRequest {
1931
2006
  * @public
1932
2007
  */
1933
2008
  vpcIdentifier: string | undefined;
2009
+ /**
2010
+ * <p> Indicates if private DNS is enabled for the VPC association. </p>
2011
+ * @public
2012
+ */
2013
+ privateDnsEnabled?: boolean | undefined;
1934
2014
  /**
1935
2015
  * <p>The IDs of the security groups. Security groups aren't added by default. You can add a security group to apply network level controls to control which resources in a VPC are allowed to access the service network and its services. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/VPC_SecurityGroups.html">Control traffic to resources using security groups</a> in the <i>Amazon VPC User Guide</i>.</p>
1936
2016
  * @public
@@ -1941,6 +2021,11 @@ export interface CreateServiceNetworkVpcAssociationRequest {
1941
2021
  * @public
1942
2022
  */
1943
2023
  tags?: Record<string, string> | undefined;
2024
+ /**
2025
+ * <p> DNS options for the service network VPC association. </p>
2026
+ * @public
2027
+ */
2028
+ dnsOptions?: DnsOptions | undefined;
1944
2029
  }
1945
2030
  /**
1946
2031
  * @public
@@ -2009,6 +2094,16 @@ export interface CreateServiceNetworkVpcAssociationResponse {
2009
2094
  * @public
2010
2095
  */
2011
2096
  securityGroupIds?: string[] | undefined;
2097
+ /**
2098
+ * <p> Indicates if private DNS is enabled for the VPC association. </p>
2099
+ * @public
2100
+ */
2101
+ privateDnsEnabled?: boolean | undefined;
2102
+ /**
2103
+ * <p> The DNS configuration options. </p>
2104
+ * @public
2105
+ */
2106
+ dnsOptions?: DnsOptions | undefined;
2012
2107
  }
2013
2108
  /**
2014
2109
  * <p>Describes the codes to use when checking for a successful response from a target for health checks.</p>
@@ -2371,6 +2466,21 @@ export interface DeleteAuthPolicyRequest {
2371
2466
  */
2372
2467
  export interface DeleteAuthPolicyResponse {
2373
2468
  }
2469
+ /**
2470
+ * @public
2471
+ */
2472
+ export interface DeleteDomainVerificationRequest {
2473
+ /**
2474
+ * <p> The ID of the domain verification to delete. </p>
2475
+ * @public
2476
+ */
2477
+ domainVerificationIdentifier: string | undefined;
2478
+ }
2479
+ /**
2480
+ * @public
2481
+ */
2482
+ export interface DeleteDomainVerificationResponse {
2483
+ }
2374
2484
  /**
2375
2485
  * @public
2376
2486
  */
@@ -2763,6 +2873,216 @@ export interface DeregisterTargetsResponse {
2763
2873
  */
2764
2874
  unsuccessful?: TargetFailure[] | undefined;
2765
2875
  }
2876
+ /**
2877
+ * @public
2878
+ */
2879
+ export interface GetDomainVerificationRequest {
2880
+ /**
2881
+ * <p> The ID or ARN of the domain verification to retrieve. </p>
2882
+ * @public
2883
+ */
2884
+ domainVerificationIdentifier: string | undefined;
2885
+ }
2886
+ /**
2887
+ * @public
2888
+ * @enum
2889
+ */
2890
+ export declare const VerificationStatus: {
2891
+ readonly PENDING: "PENDING";
2892
+ readonly VERIFICATION_TIMED_OUT: "VERIFICATION_TIMED_OUT";
2893
+ readonly VERIFIED: "VERIFIED";
2894
+ };
2895
+ /**
2896
+ * @public
2897
+ */
2898
+ export type VerificationStatus = (typeof VerificationStatus)[keyof typeof VerificationStatus];
2899
+ /**
2900
+ * <p> Configuration for TXT record-based domain verification method. </p>
2901
+ * @public
2902
+ */
2903
+ export interface TxtMethodConfig {
2904
+ /**
2905
+ * <p> The value that must be added to the TXT record for domain verification. </p>
2906
+ * @public
2907
+ */
2908
+ value: string | undefined;
2909
+ /**
2910
+ * <p> The name of the TXT record that must be created for domain verification. </p>
2911
+ * @public
2912
+ */
2913
+ name: string | undefined;
2914
+ }
2915
+ /**
2916
+ * @public
2917
+ */
2918
+ export interface GetDomainVerificationResponse {
2919
+ /**
2920
+ * <p> The ID of the domain verification. </p>
2921
+ * @public
2922
+ */
2923
+ id: string | undefined;
2924
+ /**
2925
+ * <p> The Amazon Resource Name (ARN) of the domain verification. </p>
2926
+ * @public
2927
+ */
2928
+ arn: string | undefined;
2929
+ /**
2930
+ * <p> The domain name being verified. </p>
2931
+ * @public
2932
+ */
2933
+ domainName: string | undefined;
2934
+ /**
2935
+ * <p> The current status of the domain verification process. </p>
2936
+ * @public
2937
+ */
2938
+ status: VerificationStatus | undefined;
2939
+ /**
2940
+ * <p> The TXT record configuration used for domain verification. </p>
2941
+ * @public
2942
+ */
2943
+ txtMethodConfig?: TxtMethodConfig | undefined;
2944
+ /**
2945
+ * <p> The date and time that the domain verification was created, in ISO-8601 format. </p>
2946
+ * @public
2947
+ */
2948
+ createdAt: Date | undefined;
2949
+ /**
2950
+ * <p> The date and time that the domain was last successfully verified, in ISO-8601 format. </p>
2951
+ * @public
2952
+ */
2953
+ lastVerifiedTime?: Date | undefined;
2954
+ /**
2955
+ * <p> The tags associated with the domain verification. </p>
2956
+ * @public
2957
+ */
2958
+ tags?: Record<string, string> | undefined;
2959
+ }
2960
+ /**
2961
+ * @public
2962
+ */
2963
+ export interface ListDomainVerificationsRequest {
2964
+ /**
2965
+ * <p> The maximum number of results to return. </p>
2966
+ * @public
2967
+ */
2968
+ maxResults?: number | undefined;
2969
+ /**
2970
+ * <p> A pagination token for the next page of results. </p>
2971
+ * @public
2972
+ */
2973
+ nextToken?: string | undefined;
2974
+ }
2975
+ /**
2976
+ * <p> Summary information about a domain verification. </p>
2977
+ * @public
2978
+ */
2979
+ export interface DomainVerificationSummary {
2980
+ /**
2981
+ * <p> The ID of the domain verification. </p>
2982
+ * @public
2983
+ */
2984
+ id: string | undefined;
2985
+ /**
2986
+ * <p> The Amazon Resource Name (ARN) of the domain verification. </p>
2987
+ * @public
2988
+ */
2989
+ arn: string | undefined;
2990
+ /**
2991
+ * <p> The domain name being verified. </p>
2992
+ * @public
2993
+ */
2994
+ domainName: string | undefined;
2995
+ /**
2996
+ * <p> The current status of the domain verification process. </p>
2997
+ * @public
2998
+ */
2999
+ status: VerificationStatus | undefined;
3000
+ /**
3001
+ * <p> The TXT record configuration used for domain verification. </p>
3002
+ * @public
3003
+ */
3004
+ txtMethodConfig?: TxtMethodConfig | undefined;
3005
+ /**
3006
+ * <p> The date and time that the domain verification was created, in ISO-8601 format. </p>
3007
+ * @public
3008
+ */
3009
+ createdAt: Date | undefined;
3010
+ /**
3011
+ * <p> The date and time that the domain was last successfully verified, in ISO-8601 format. </p>
3012
+ * @public
3013
+ */
3014
+ lastVerifiedTime?: Date | undefined;
3015
+ /**
3016
+ * <p> The tags associated with the domain verification. </p>
3017
+ * @public
3018
+ */
3019
+ tags?: Record<string, string> | undefined;
3020
+ }
3021
+ /**
3022
+ * @public
3023
+ */
3024
+ export interface ListDomainVerificationsResponse {
3025
+ /**
3026
+ * <p> Information about the domain verifications. </p>
3027
+ * @public
3028
+ */
3029
+ items: DomainVerificationSummary[] | undefined;
3030
+ /**
3031
+ * <p> A pagination token for the next page of results. </p>
3032
+ * @public
3033
+ */
3034
+ nextToken?: string | undefined;
3035
+ }
3036
+ /**
3037
+ * @public
3038
+ */
3039
+ export interface StartDomainVerificationRequest {
3040
+ /**
3041
+ * <p> A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you retry a request that completed successfully using the same client token and parameters, the retry succeeds without performing any actions. If the parameters aren't identical, the retry fails. </p>
3042
+ * @public
3043
+ */
3044
+ clientToken?: string | undefined;
3045
+ /**
3046
+ * <p> The domain name to verify ownership for. </p>
3047
+ * @public
3048
+ */
3049
+ domainName: string | undefined;
3050
+ /**
3051
+ * <p> The tags for the domain verification. </p>
3052
+ * @public
3053
+ */
3054
+ tags?: Record<string, string> | undefined;
3055
+ }
3056
+ /**
3057
+ * @public
3058
+ */
3059
+ export interface StartDomainVerificationResponse {
3060
+ /**
3061
+ * <p> The ID of the domain verification. </p>
3062
+ * @public
3063
+ */
3064
+ id: string | undefined;
3065
+ /**
3066
+ * <p> The Amazon Resource Name (ARN) of the domain verification. </p>
3067
+ * @public
3068
+ */
3069
+ arn: string | undefined;
3070
+ /**
3071
+ * <p> The domain name being verified. </p>
3072
+ * @public
3073
+ */
3074
+ domainName: string | undefined;
3075
+ /**
3076
+ * <p> The current status of the domain verification process. </p>
3077
+ * @public
3078
+ */
3079
+ status: VerificationStatus | undefined;
3080
+ /**
3081
+ * <p> The TXT record configuration used for domain verification. </p>
3082
+ * @public
3083
+ */
3084
+ txtMethodConfig?: TxtMethodConfig | undefined;
3085
+ }
2766
3086
  /**
2767
3087
  * @public
2768
3088
  */
@@ -2962,6 +3282,26 @@ export interface GetResourceConfigurationResponse {
2962
3282
  * @public
2963
3283
  */
2964
3284
  lastUpdatedAt?: Date | undefined;
3285
+ /**
3286
+ * <p> The domain verification ID. </p>
3287
+ * @public
3288
+ */
3289
+ domainVerificationId?: string | undefined;
3290
+ /**
3291
+ * <p> The ARN of the domain verification. </p>
3292
+ * @public
3293
+ */
3294
+ domainVerificationArn?: string | undefined;
3295
+ /**
3296
+ * <p> The domain verification status. </p>
3297
+ * @public
3298
+ */
3299
+ domainVerificationStatus?: VerificationStatus | undefined;
3300
+ /**
3301
+ * <p> (GROUP) The group domain for a group resource configuration. Any domains that you create for the child resource are subdomains of the group domain. Child resources inherit the verification status of the domain. </p>
3302
+ * @public
3303
+ */
3304
+ groupDomain?: string | undefined;
2965
3305
  }
2966
3306
  /**
2967
3307
  * @public
@@ -3347,6 +3687,11 @@ export interface GetServiceNetworkResourceAssociationResponse {
3347
3687
  * @public
3348
3688
  */
3349
3689
  privateDnsEntry?: DnsEntry | undefined;
3690
+ /**
3691
+ * <p> Indicates if private DNS is enabled in the service network resource association. </p>
3692
+ * @public
3693
+ */
3694
+ privateDnsEnabled?: boolean | undefined;
3350
3695
  /**
3351
3696
  * <p>The DNS entry for the service.</p>
3352
3697
  * @public
@@ -3357,6 +3702,11 @@ export interface GetServiceNetworkResourceAssociationResponse {
3357
3702
  * @public
3358
3703
  */
3359
3704
  isManagedAssociation?: boolean | undefined;
3705
+ /**
3706
+ * <p> The domain verification status in the service network resource association. </p>
3707
+ * @public
3708
+ */
3709
+ domainVerificationStatus?: VerificationStatus | undefined;
3360
3710
  }
3361
3711
  /**
3362
3712
  * @public
@@ -3512,6 +3862,11 @@ export interface GetServiceNetworkVpcAssociationResponse {
3512
3862
  * @public
3513
3863
  */
3514
3864
  securityGroupIds?: string[] | undefined;
3865
+ /**
3866
+ * <p> Indicates if private DNS is enabled in the VPC association. </p>
3867
+ * @public
3868
+ */
3869
+ privateDnsEnabled?: boolean | undefined;
3515
3870
  /**
3516
3871
  * <p>The failure message.</p>
3517
3872
  * @public
@@ -3527,6 +3882,11 @@ export interface GetServiceNetworkVpcAssociationResponse {
3527
3882
  * @public
3528
3883
  */
3529
3884
  lastUpdatedAt?: Date | undefined;
3885
+ /**
3886
+ * <p> DNS options for the service network VPC association. </p>
3887
+ * @public
3888
+ */
3889
+ dnsOptions?: DnsOptions | undefined;
3530
3890
  }
3531
3891
  /**
3532
3892
  * @public
@@ -3753,6 +4113,11 @@ export interface ListResourceConfigurationsRequest {
3753
4113
  * @public
3754
4114
  */
3755
4115
  resourceConfigurationGroupIdentifier?: string | undefined;
4116
+ /**
4117
+ * <p> The domain verification ID. </p>
4118
+ * @public
4119
+ */
4120
+ domainVerificationIdentifier?: string | undefined;
3756
4121
  /**
3757
4122
  * <p>The maximum page size.</p>
3758
4123
  * @public
@@ -3819,6 +4184,21 @@ export interface ResourceConfigurationSummary {
3819
4184
  * @public
3820
4185
  */
3821
4186
  lastUpdatedAt?: Date | undefined;
4187
+ /**
4188
+ * <p> The custom domain name. </p>
4189
+ * @public
4190
+ */
4191
+ customDomainName?: string | undefined;
4192
+ /**
4193
+ * <p> The domain verification ID. </p>
4194
+ * @public
4195
+ */
4196
+ domainVerificationId?: string | undefined;
4197
+ /**
4198
+ * <p> (GROUP) The group domain for a group resource configuration. Any domains that you create for the child resource are subdomains of the group domain. Child resources inherit the verification status of the domain. </p>
4199
+ * @public
4200
+ */
4201
+ groupDomain?: string | undefined;
3822
4202
  }
3823
4203
  /**
3824
4204
  * @public
@@ -4218,6 +4598,11 @@ export interface ServiceNetworkResourceAssociationSummary {
4218
4598
  * @public
4219
4599
  */
4220
4600
  failureCode?: string | undefined;
4601
+ /**
4602
+ * <p> Indicates if private DNS is enabled for the service network resource association. </p>
4603
+ * @public
4604
+ */
4605
+ privateDnsEnabled?: boolean | undefined;
4221
4606
  }
4222
4607
  /**
4223
4608
  * @public
@@ -4491,6 +4876,16 @@ export interface ServiceNetworkVpcAssociationSummary {
4491
4876
  * @public
4492
4877
  */
4493
4878
  serviceNetworkArn?: string | undefined;
4879
+ /**
4880
+ * <p> Indicates if private DNS is enabled for the service network VPC association. </p>
4881
+ * @public
4882
+ */
4883
+ privateDnsEnabled?: boolean | undefined;
4884
+ /**
4885
+ * <p> The DNS options for the service network VPC association. </p>
4886
+ * @public
4887
+ */
4888
+ dnsOptions?: DnsOptions | undefined;
4494
4889
  /**
4495
4890
  * <p>The ID of the VPC.</p>
4496
4891
  * @public
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDomainVerificationsCommandInput, ListDomainVerificationsCommandOutput } from "../commands/ListDomainVerificationsCommand";
3
+ import { VPCLatticePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListDomainVerifications: (config: VPCLatticePaginationConfiguration, input: ListDomainVerificationsCommandInput, ...rest: any[]) => Paginator<ListDomainVerificationsCommandOutput>;
@@ -1,5 +1,6 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListAccessLogSubscriptionsPaginator";
3
+ export * from "./ListDomainVerificationsPaginator";
3
4
  export * from "./ListListenersPaginator";
4
5
  export * from "./ListResourceConfigurationsPaginator";
5
6
  export * from "./ListResourceEndpointAssociationsPaginator";
@@ -14,6 +14,7 @@ import { CreateServiceNetworkVpcAssociationCommandInput, CreateServiceNetworkVpc
14
14
  import { CreateTargetGroupCommandInput, CreateTargetGroupCommandOutput } from "../commands/CreateTargetGroupCommand";
15
15
  import { DeleteAccessLogSubscriptionCommandInput, DeleteAccessLogSubscriptionCommandOutput } from "../commands/DeleteAccessLogSubscriptionCommand";
16
16
  import { DeleteAuthPolicyCommandInput, DeleteAuthPolicyCommandOutput } from "../commands/DeleteAuthPolicyCommand";
17
+ import { DeleteDomainVerificationCommandInput, DeleteDomainVerificationCommandOutput } from "../commands/DeleteDomainVerificationCommand";
17
18
  import { DeleteListenerCommandInput, DeleteListenerCommandOutput } from "../commands/DeleteListenerCommand";
18
19
  import { DeleteResourceConfigurationCommandInput, DeleteResourceConfigurationCommandOutput } from "../commands/DeleteResourceConfigurationCommand";
19
20
  import { DeleteResourceEndpointAssociationCommandInput, DeleteResourceEndpointAssociationCommandOutput } from "../commands/DeleteResourceEndpointAssociationCommand";
@@ -29,6 +30,7 @@ import { DeleteTargetGroupCommandInput, DeleteTargetGroupCommandOutput } from ".
29
30
  import { DeregisterTargetsCommandInput, DeregisterTargetsCommandOutput } from "../commands/DeregisterTargetsCommand";
30
31
  import { GetAccessLogSubscriptionCommandInput, GetAccessLogSubscriptionCommandOutput } from "../commands/GetAccessLogSubscriptionCommand";
31
32
  import { GetAuthPolicyCommandInput, GetAuthPolicyCommandOutput } from "../commands/GetAuthPolicyCommand";
33
+ import { GetDomainVerificationCommandInput, GetDomainVerificationCommandOutput } from "../commands/GetDomainVerificationCommand";
32
34
  import { GetListenerCommandInput, GetListenerCommandOutput } from "../commands/GetListenerCommand";
33
35
  import { GetResourceConfigurationCommandInput, GetResourceConfigurationCommandOutput } from "../commands/GetResourceConfigurationCommand";
34
36
  import { GetResourceGatewayCommandInput, GetResourceGatewayCommandOutput } from "../commands/GetResourceGatewayCommand";
@@ -41,6 +43,7 @@ import { GetServiceNetworkServiceAssociationCommandInput, GetServiceNetworkServi
41
43
  import { GetServiceNetworkVpcAssociationCommandInput, GetServiceNetworkVpcAssociationCommandOutput } from "../commands/GetServiceNetworkVpcAssociationCommand";
42
44
  import { GetTargetGroupCommandInput, GetTargetGroupCommandOutput } from "../commands/GetTargetGroupCommand";
43
45
  import { ListAccessLogSubscriptionsCommandInput, ListAccessLogSubscriptionsCommandOutput } from "../commands/ListAccessLogSubscriptionsCommand";
46
+ import { ListDomainVerificationsCommandInput, ListDomainVerificationsCommandOutput } from "../commands/ListDomainVerificationsCommand";
44
47
  import { ListListenersCommandInput, ListListenersCommandOutput } from "../commands/ListListenersCommand";
45
48
  import { ListResourceConfigurationsCommandInput, ListResourceConfigurationsCommandOutput } from "../commands/ListResourceConfigurationsCommand";
46
49
  import { ListResourceEndpointAssociationsCommandInput, ListResourceEndpointAssociationsCommandOutput } from "../commands/ListResourceEndpointAssociationsCommand";
@@ -58,6 +61,7 @@ import { ListTargetsCommandInput, ListTargetsCommandOutput } from "../commands/L
58
61
  import { PutAuthPolicyCommandInput, PutAuthPolicyCommandOutput } from "../commands/PutAuthPolicyCommand";
59
62
  import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "../commands/PutResourcePolicyCommand";
60
63
  import { RegisterTargetsCommandInput, RegisterTargetsCommandOutput } from "../commands/RegisterTargetsCommand";
64
+ import { StartDomainVerificationCommandInput, StartDomainVerificationCommandOutput } from "../commands/StartDomainVerificationCommand";
61
65
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
62
66
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
63
67
  import { UpdateAccessLogSubscriptionCommandInput, UpdateAccessLogSubscriptionCommandOutput } from "../commands/UpdateAccessLogSubscriptionCommand";
@@ -125,6 +129,10 @@ export declare const se_DeleteAccessLogSubscriptionCommand: (input: DeleteAccess
125
129
  * serializeAws_restJson1DeleteAuthPolicyCommand
126
130
  */
127
131
  export declare const se_DeleteAuthPolicyCommand: (input: DeleteAuthPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
132
+ /**
133
+ * serializeAws_restJson1DeleteDomainVerificationCommand
134
+ */
135
+ export declare const se_DeleteDomainVerificationCommand: (input: DeleteDomainVerificationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
128
136
  /**
129
137
  * serializeAws_restJson1DeleteListenerCommand
130
138
  */
@@ -185,6 +193,10 @@ export declare const se_GetAccessLogSubscriptionCommand: (input: GetAccessLogSub
185
193
  * serializeAws_restJson1GetAuthPolicyCommand
186
194
  */
187
195
  export declare const se_GetAuthPolicyCommand: (input: GetAuthPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
196
+ /**
197
+ * serializeAws_restJson1GetDomainVerificationCommand
198
+ */
199
+ export declare const se_GetDomainVerificationCommand: (input: GetDomainVerificationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
188
200
  /**
189
201
  * serializeAws_restJson1GetListenerCommand
190
202
  */
@@ -233,6 +245,10 @@ export declare const se_GetTargetGroupCommand: (input: GetTargetGroupCommandInpu
233
245
  * serializeAws_restJson1ListAccessLogSubscriptionsCommand
234
246
  */
235
247
  export declare const se_ListAccessLogSubscriptionsCommand: (input: ListAccessLogSubscriptionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
248
+ /**
249
+ * serializeAws_restJson1ListDomainVerificationsCommand
250
+ */
251
+ export declare const se_ListDomainVerificationsCommand: (input: ListDomainVerificationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
236
252
  /**
237
253
  * serializeAws_restJson1ListListenersCommand
238
254
  */
@@ -301,6 +317,10 @@ export declare const se_PutResourcePolicyCommand: (input: PutResourcePolicyComma
301
317
  * serializeAws_restJson1RegisterTargetsCommand
302
318
  */
303
319
  export declare const se_RegisterTargetsCommand: (input: RegisterTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
320
+ /**
321
+ * serializeAws_restJson1StartDomainVerificationCommand
322
+ */
323
+ export declare const se_StartDomainVerificationCommand: (input: StartDomainVerificationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
304
324
  /**
305
325
  * serializeAws_restJson1TagResourceCommand
306
326
  */
@@ -401,6 +421,10 @@ export declare const de_DeleteAccessLogSubscriptionCommand: (output: __HttpRespo
401
421
  * deserializeAws_restJson1DeleteAuthPolicyCommand
402
422
  */
403
423
  export declare const de_DeleteAuthPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAuthPolicyCommandOutput>;
424
+ /**
425
+ * deserializeAws_restJson1DeleteDomainVerificationCommand
426
+ */
427
+ export declare const de_DeleteDomainVerificationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDomainVerificationCommandOutput>;
404
428
  /**
405
429
  * deserializeAws_restJson1DeleteListenerCommand
406
430
  */
@@ -461,6 +485,10 @@ export declare const de_GetAccessLogSubscriptionCommand: (output: __HttpResponse
461
485
  * deserializeAws_restJson1GetAuthPolicyCommand
462
486
  */
463
487
  export declare const de_GetAuthPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAuthPolicyCommandOutput>;
488
+ /**
489
+ * deserializeAws_restJson1GetDomainVerificationCommand
490
+ */
491
+ export declare const de_GetDomainVerificationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDomainVerificationCommandOutput>;
464
492
  /**
465
493
  * deserializeAws_restJson1GetListenerCommand
466
494
  */
@@ -509,6 +537,10 @@ export declare const de_GetTargetGroupCommand: (output: __HttpResponse, context:
509
537
  * deserializeAws_restJson1ListAccessLogSubscriptionsCommand
510
538
  */
511
539
  export declare const de_ListAccessLogSubscriptionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAccessLogSubscriptionsCommandOutput>;
540
+ /**
541
+ * deserializeAws_restJson1ListDomainVerificationsCommand
542
+ */
543
+ export declare const de_ListDomainVerificationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDomainVerificationsCommandOutput>;
512
544
  /**
513
545
  * deserializeAws_restJson1ListListenersCommand
514
546
  */
@@ -577,6 +609,10 @@ export declare const de_PutResourcePolicyCommand: (output: __HttpResponse, conte
577
609
  * deserializeAws_restJson1RegisterTargetsCommand
578
610
  */
579
611
  export declare const de_RegisterTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterTargetsCommandOutput>;
612
+ /**
613
+ * deserializeAws_restJson1StartDomainVerificationCommand
614
+ */
615
+ export declare const de_StartDomainVerificationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartDomainVerificationCommandOutput>;
580
616
  /**
581
617
  * deserializeAws_restJson1TagResourceCommand
582
618
  */