@aws-sdk/client-apprunner 3.325.0 → 3.326.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 (36) hide show
  1. package/dist-types/commands/AssociateCustomDomainCommand.d.ts +27 -0
  2. package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +17 -0
  3. package/dist-types/commands/CreateConnectionCommand.d.ts +12 -0
  4. package/dist-types/commands/CreateObservabilityConfigurationCommand.d.ts +17 -0
  5. package/dist-types/commands/CreateServiceCommand.d.ts +93 -0
  6. package/dist-types/commands/CreateVpcConnectorCommand.d.ts +19 -0
  7. package/dist-types/commands/CreateVpcIngressConnectionCommand.d.ts +19 -0
  8. package/dist-types/commands/DeleteAutoScalingConfigurationCommand.d.ts +17 -0
  9. package/dist-types/commands/DeleteConnectionCommand.d.ts +12 -0
  10. package/dist-types/commands/DeleteObservabilityConfigurationCommand.d.ts +17 -0
  11. package/dist-types/commands/DeleteServiceCommand.d.ts +93 -0
  12. package/dist-types/commands/DeleteVpcConnectorCommand.d.ts +19 -0
  13. package/dist-types/commands/DeleteVpcIngressConnectionCommand.d.ts +19 -0
  14. package/dist-types/commands/DescribeAutoScalingConfigurationCommand.d.ts +17 -0
  15. package/dist-types/commands/DescribeCustomDomainsCommand.d.ts +30 -0
  16. package/dist-types/commands/DescribeObservabilityConfigurationCommand.d.ts +17 -0
  17. package/dist-types/commands/DescribeServiceCommand.d.ts +92 -0
  18. package/dist-types/commands/DescribeVpcConnectorCommand.d.ts +19 -0
  19. package/dist-types/commands/DescribeVpcIngressConnectionCommand.d.ts +19 -0
  20. package/dist-types/commands/DisassociateCustomDomainCommand.d.ts +27 -0
  21. package/dist-types/commands/ListAutoScalingConfigurationsCommand.d.ts +13 -0
  22. package/dist-types/commands/ListConnectionsCommand.d.ts +15 -0
  23. package/dist-types/commands/ListObservabilityConfigurationsCommand.d.ts +13 -0
  24. package/dist-types/commands/ListOperationsCommand.d.ts +17 -0
  25. package/dist-types/commands/ListServicesCommand.d.ts +17 -0
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  27. package/dist-types/commands/ListVpcConnectorsCommand.d.ts +22 -0
  28. package/dist-types/commands/ListVpcIngressConnectionsCommand.d.ts +12 -0
  29. package/dist-types/commands/PauseServiceCommand.d.ts +93 -0
  30. package/dist-types/commands/ResumeServiceCommand.d.ts +93 -0
  31. package/dist-types/commands/StartDeploymentCommand.d.ts +6 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  33. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  34. package/dist-types/commands/UpdateServiceCommand.d.ts +93 -0
  35. package/dist-types/commands/UpdateVpcIngressConnectionCommand.d.ts +19 -0
  36. package/package.json +3 -3
@@ -37,6 +37,31 @@ export interface AssociateCustomDomainCommandOutput extends AssociateCustomDomai
37
37
  * };
38
38
  * const command = new AssociateCustomDomainCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // AssociateCustomDomainResponse
41
+ * // DNSTarget: "STRING_VALUE", // required
42
+ * // ServiceArn: "STRING_VALUE", // required
43
+ * // CustomDomain: { // CustomDomain
44
+ * // DomainName: "STRING_VALUE", // required
45
+ * // EnableWWWSubdomain: true || false, // required
46
+ * // CertificateValidationRecords: [ // CertificateValidationRecordList
47
+ * // { // CertificateValidationRecord
48
+ * // Name: "STRING_VALUE",
49
+ * // Type: "STRING_VALUE",
50
+ * // Value: "STRING_VALUE",
51
+ * // Status: "PENDING_VALIDATION" || "SUCCESS" || "FAILED",
52
+ * // },
53
+ * // ],
54
+ * // Status: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "DELETING" || "DELETE_FAILED" || "PENDING_CERTIFICATE_DNS_VALIDATION" || "BINDING_CERTIFICATE", // required
55
+ * // },
56
+ * // VpcDNSTargets: [ // VpcDNSTargetList // required
57
+ * // { // VpcDNSTarget
58
+ * // VpcIngressConnectionArn: "STRING_VALUE",
59
+ * // VpcId: "STRING_VALUE",
60
+ * // DomainName: "STRING_VALUE",
61
+ * // },
62
+ * // ],
63
+ * // };
64
+ *
40
65
  * ```
41
66
  *
42
67
  * @param AssociateCustomDomainCommandInput - {@link AssociateCustomDomainCommandInput}
@@ -54,6 +79,8 @@ export interface AssociateCustomDomainCommandOutput extends AssociateCustomDomai
54
79
  * @throws {@link InvalidStateException} (client fault)
55
80
  * <p>You can't perform this action when the resource is in its current state.</p>
56
81
  *
82
+ * @throws {@link AppRunnerServiceException}
83
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
57
84
  *
58
85
  */
59
86
  export declare class AssociateCustomDomainCommand extends $Command<AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput, AppRunnerClientResolvedConfig> {
@@ -48,6 +48,21 @@ export interface CreateAutoScalingConfigurationCommandOutput extends CreateAutoS
48
48
  * };
49
49
  * const command = new CreateAutoScalingConfigurationCommand(input);
50
50
  * const response = await client.send(command);
51
+ * // { // CreateAutoScalingConfigurationResponse
52
+ * // AutoScalingConfiguration: { // AutoScalingConfiguration
53
+ * // AutoScalingConfigurationArn: "STRING_VALUE",
54
+ * // AutoScalingConfigurationName: "STRING_VALUE",
55
+ * // AutoScalingConfigurationRevision: Number("int"),
56
+ * // Latest: true || false,
57
+ * // Status: "ACTIVE" || "INACTIVE",
58
+ * // MaxConcurrency: Number("int"),
59
+ * // MinSize: Number("int"),
60
+ * // MaxSize: Number("int"),
61
+ * // CreatedAt: new Date("TIMESTAMP"),
62
+ * // DeletedAt: new Date("TIMESTAMP"),
63
+ * // },
64
+ * // };
65
+ *
51
66
  * ```
52
67
  *
53
68
  * @param CreateAutoScalingConfigurationCommandInput - {@link CreateAutoScalingConfigurationCommandInput}
@@ -67,6 +82,8 @@ export interface CreateAutoScalingConfigurationCommandOutput extends CreateAutoS
67
82
  * <p>For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App Runner endpoints and quotas</a> in the
68
83
  * <i>Amazon Web Services General Reference</i>.</p>
69
84
  *
85
+ * @throws {@link AppRunnerServiceException}
86
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
70
87
  *
71
88
  */
72
89
  export declare class CreateAutoScalingConfigurationCommand extends $Command<CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
@@ -41,6 +41,16 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse,
41
41
  * };
42
42
  * const command = new CreateConnectionCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // CreateConnectionResponse
45
+ * // Connection: { // Connection
46
+ * // ConnectionName: "STRING_VALUE",
47
+ * // ConnectionArn: "STRING_VALUE",
48
+ * // ProviderType: "GITHUB",
49
+ * // Status: "PENDING_HANDSHAKE" || "AVAILABLE" || "ERROR" || "DELETED",
50
+ * // CreatedAt: new Date("TIMESTAMP"),
51
+ * // },
52
+ * // };
53
+ *
44
54
  * ```
45
55
  *
46
56
  * @param CreateConnectionCommandInput - {@link CreateConnectionCommandInput}
@@ -60,6 +70,8 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse,
60
70
  * <p>For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App Runner endpoints and quotas</a> in the
61
71
  * <i>Amazon Web Services General Reference</i>.</p>
62
72
  *
73
+ * @throws {@link AppRunnerServiceException}
74
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
63
75
  *
64
76
  */
65
77
  export declare class CreateConnectionCommand extends $Command<CreateConnectionCommandInput, CreateConnectionCommandOutput, AppRunnerClientResolvedConfig> {
@@ -48,6 +48,21 @@ export interface CreateObservabilityConfigurationCommandOutput extends CreateObs
48
48
  * };
49
49
  * const command = new CreateObservabilityConfigurationCommand(input);
50
50
  * const response = await client.send(command);
51
+ * // { // CreateObservabilityConfigurationResponse
52
+ * // ObservabilityConfiguration: { // ObservabilityConfiguration
53
+ * // ObservabilityConfigurationArn: "STRING_VALUE",
54
+ * // ObservabilityConfigurationName: "STRING_VALUE",
55
+ * // TraceConfiguration: { // TraceConfiguration
56
+ * // Vendor: "AWSXRAY", // required
57
+ * // },
58
+ * // ObservabilityConfigurationRevision: Number("int"),
59
+ * // Latest: true || false,
60
+ * // Status: "ACTIVE" || "INACTIVE",
61
+ * // CreatedAt: new Date("TIMESTAMP"),
62
+ * // DeletedAt: new Date("TIMESTAMP"),
63
+ * // },
64
+ * // };
65
+ *
51
66
  * ```
52
67
  *
53
68
  * @param CreateObservabilityConfigurationCommandInput - {@link CreateObservabilityConfigurationCommandInput}
@@ -67,6 +82,8 @@ export interface CreateObservabilityConfigurationCommandOutput extends CreateObs
67
82
  * <p>For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App Runner endpoints and quotas</a> in the
68
83
  * <i>Amazon Web Services General Reference</i>.</p>
69
84
  *
85
+ * @throws {@link AppRunnerServiceException}
86
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
70
87
  *
71
88
  */
72
89
  export declare class CreateObservabilityConfigurationCommand extends $Command<CreateObservabilityConfigurationCommandInput, CreateObservabilityConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
@@ -111,6 +111,97 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
111
111
  * };
112
112
  * const command = new CreateServiceCommand(input);
113
113
  * const response = await client.send(command);
114
+ * // { // CreateServiceResponse
115
+ * // Service: { // Service
116
+ * // ServiceName: "STRING_VALUE", // required
117
+ * // ServiceId: "STRING_VALUE", // required
118
+ * // ServiceArn: "STRING_VALUE", // required
119
+ * // ServiceUrl: "STRING_VALUE",
120
+ * // CreatedAt: new Date("TIMESTAMP"), // required
121
+ * // UpdatedAt: new Date("TIMESTAMP"), // required
122
+ * // DeletedAt: new Date("TIMESTAMP"),
123
+ * // Status: "CREATE_FAILED" || "RUNNING" || "DELETED" || "DELETE_FAILED" || "PAUSED" || "OPERATION_IN_PROGRESS", // required
124
+ * // SourceConfiguration: { // SourceConfiguration
125
+ * // CodeRepository: { // CodeRepository
126
+ * // RepositoryUrl: "STRING_VALUE", // required
127
+ * // SourceCodeVersion: { // SourceCodeVersion
128
+ * // Type: "BRANCH", // required
129
+ * // Value: "STRING_VALUE", // required
130
+ * // },
131
+ * // CodeConfiguration: { // CodeConfiguration
132
+ * // ConfigurationSource: "REPOSITORY" || "API", // required
133
+ * // CodeConfigurationValues: { // CodeConfigurationValues
134
+ * // Runtime: "PYTHON_3" || "NODEJS_12" || "NODEJS_14" || "CORRETTO_8" || "CORRETTO_11" || "NODEJS_16" || "GO_1" || "DOTNET_6" || "PHP_81" || "RUBY_31", // required
135
+ * // BuildCommand: "STRING_VALUE",
136
+ * // StartCommand: "STRING_VALUE",
137
+ * // Port: "STRING_VALUE",
138
+ * // RuntimeEnvironmentVariables: { // RuntimeEnvironmentVariables
139
+ * // "<keys>": "STRING_VALUE",
140
+ * // },
141
+ * // RuntimeEnvironmentSecrets: { // RuntimeEnvironmentSecrets
142
+ * // "<keys>": "STRING_VALUE",
143
+ * // },
144
+ * // },
145
+ * // },
146
+ * // },
147
+ * // ImageRepository: { // ImageRepository
148
+ * // ImageIdentifier: "STRING_VALUE", // required
149
+ * // ImageConfiguration: { // ImageConfiguration
150
+ * // RuntimeEnvironmentVariables: {
151
+ * // "<keys>": "STRING_VALUE",
152
+ * // },
153
+ * // StartCommand: "STRING_VALUE",
154
+ * // Port: "STRING_VALUE",
155
+ * // RuntimeEnvironmentSecrets: {
156
+ * // "<keys>": "STRING_VALUE",
157
+ * // },
158
+ * // },
159
+ * // ImageRepositoryType: "ECR" || "ECR_PUBLIC", // required
160
+ * // },
161
+ * // AutoDeploymentsEnabled: true || false,
162
+ * // AuthenticationConfiguration: { // AuthenticationConfiguration
163
+ * // ConnectionArn: "STRING_VALUE",
164
+ * // AccessRoleArn: "STRING_VALUE",
165
+ * // },
166
+ * // },
167
+ * // InstanceConfiguration: { // InstanceConfiguration
168
+ * // Cpu: "STRING_VALUE",
169
+ * // Memory: "STRING_VALUE",
170
+ * // InstanceRoleArn: "STRING_VALUE",
171
+ * // },
172
+ * // EncryptionConfiguration: { // EncryptionConfiguration
173
+ * // KmsKey: "STRING_VALUE", // required
174
+ * // },
175
+ * // HealthCheckConfiguration: { // HealthCheckConfiguration
176
+ * // Protocol: "TCP" || "HTTP",
177
+ * // Path: "STRING_VALUE",
178
+ * // Interval: Number("int"),
179
+ * // Timeout: Number("int"),
180
+ * // HealthyThreshold: Number("int"),
181
+ * // UnhealthyThreshold: Number("int"),
182
+ * // },
183
+ * // AutoScalingConfigurationSummary: { // AutoScalingConfigurationSummary
184
+ * // AutoScalingConfigurationArn: "STRING_VALUE",
185
+ * // AutoScalingConfigurationName: "STRING_VALUE",
186
+ * // AutoScalingConfigurationRevision: Number("int"),
187
+ * // },
188
+ * // NetworkConfiguration: { // NetworkConfiguration
189
+ * // EgressConfiguration: { // EgressConfiguration
190
+ * // EgressType: "DEFAULT" || "VPC",
191
+ * // VpcConnectorArn: "STRING_VALUE",
192
+ * // },
193
+ * // IngressConfiguration: { // IngressConfiguration
194
+ * // IsPubliclyAccessible: true || false,
195
+ * // },
196
+ * // },
197
+ * // ObservabilityConfiguration: { // ServiceObservabilityConfiguration
198
+ * // ObservabilityEnabled: true || false, // required
199
+ * // ObservabilityConfigurationArn: "STRING_VALUE",
200
+ * // },
201
+ * // },
202
+ * // OperationId: "STRING_VALUE", // required
203
+ * // };
204
+ *
114
205
  * ```
115
206
  *
116
207
  * @param CreateServiceCommandInput - {@link CreateServiceCommandInput}
@@ -130,6 +221,8 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
130
221
  * <p>For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App Runner endpoints and quotas</a> in the
131
222
  * <i>Amazon Web Services General Reference</i>.</p>
132
223
  *
224
+ * @throws {@link AppRunnerServiceException}
225
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
133
226
  *
134
227
  */
135
228
  export declare class CreateServiceCommand extends $Command<CreateServiceCommandInput, CreateServiceCommandOutput, AppRunnerClientResolvedConfig> {
@@ -44,6 +44,23 @@ export interface CreateVpcConnectorCommandOutput extends CreateVpcConnectorRespo
44
44
  * };
45
45
  * const command = new CreateVpcConnectorCommand(input);
46
46
  * const response = await client.send(command);
47
+ * // { // CreateVpcConnectorResponse
48
+ * // VpcConnector: { // VpcConnector
49
+ * // VpcConnectorName: "STRING_VALUE",
50
+ * // VpcConnectorArn: "STRING_VALUE",
51
+ * // VpcConnectorRevision: Number("int"),
52
+ * // Subnets: [ // StringList
53
+ * // "STRING_VALUE",
54
+ * // ],
55
+ * // SecurityGroups: [
56
+ * // "STRING_VALUE",
57
+ * // ],
58
+ * // Status: "ACTIVE" || "INACTIVE",
59
+ * // CreatedAt: new Date("TIMESTAMP"),
60
+ * // DeletedAt: new Date("TIMESTAMP"),
61
+ * // },
62
+ * // };
63
+ *
47
64
  * ```
48
65
  *
49
66
  * @param CreateVpcConnectorCommandInput - {@link CreateVpcConnectorCommandInput}
@@ -63,6 +80,8 @@ export interface CreateVpcConnectorCommandOutput extends CreateVpcConnectorRespo
63
80
  * <p>For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App Runner endpoints and quotas</a> in the
64
81
  * <i>Amazon Web Services General Reference</i>.</p>
65
82
  *
83
+ * @throws {@link AppRunnerServiceException}
84
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
66
85
  *
67
86
  */
68
87
  export declare class CreateVpcConnectorCommand extends $Command<CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput, AppRunnerClientResolvedConfig> {
@@ -42,6 +42,23 @@ export interface CreateVpcIngressConnectionCommandOutput extends CreateVpcIngres
42
42
  * };
43
43
  * const command = new CreateVpcIngressConnectionCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // CreateVpcIngressConnectionResponse
46
+ * // VpcIngressConnection: { // VpcIngressConnection
47
+ * // VpcIngressConnectionArn: "STRING_VALUE",
48
+ * // VpcIngressConnectionName: "STRING_VALUE",
49
+ * // ServiceArn: "STRING_VALUE",
50
+ * // Status: "AVAILABLE" || "PENDING_CREATION" || "PENDING_UPDATE" || "PENDING_DELETION" || "FAILED_CREATION" || "FAILED_UPDATE" || "FAILED_DELETION" || "DELETED",
51
+ * // AccountId: "STRING_VALUE",
52
+ * // DomainName: "STRING_VALUE",
53
+ * // IngressVpcConfiguration: { // IngressVpcConfiguration
54
+ * // VpcId: "STRING_VALUE",
55
+ * // VpcEndpointId: "STRING_VALUE",
56
+ * // },
57
+ * // CreatedAt: new Date("TIMESTAMP"),
58
+ * // DeletedAt: new Date("TIMESTAMP"),
59
+ * // },
60
+ * // };
61
+ *
45
62
  * ```
46
63
  *
47
64
  * @param CreateVpcIngressConnectionCommandInput - {@link CreateVpcIngressConnectionCommandInput}
@@ -64,6 +81,8 @@ export interface CreateVpcIngressConnectionCommandOutput extends CreateVpcIngres
64
81
  * <p>For App Runner per-resource quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/apprunner.html">App Runner endpoints and quotas</a> in the
65
82
  * <i>Amazon Web Services General Reference</i>.</p>
66
83
  *
84
+ * @throws {@link AppRunnerServiceException}
85
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
67
86
  *
68
87
  */
69
88
  export declare class CreateVpcIngressConnectionCommand extends $Command<CreateVpcIngressConnectionCommandInput, CreateVpcIngressConnectionCommandOutput, AppRunnerClientResolvedConfig> {
@@ -32,6 +32,21 @@ export interface DeleteAutoScalingConfigurationCommandOutput extends DeleteAutoS
32
32
  * };
33
33
  * const command = new DeleteAutoScalingConfigurationCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeleteAutoScalingConfigurationResponse
36
+ * // AutoScalingConfiguration: { // AutoScalingConfiguration
37
+ * // AutoScalingConfigurationArn: "STRING_VALUE",
38
+ * // AutoScalingConfigurationName: "STRING_VALUE",
39
+ * // AutoScalingConfigurationRevision: Number("int"),
40
+ * // Latest: true || false,
41
+ * // Status: "ACTIVE" || "INACTIVE",
42
+ * // MaxConcurrency: Number("int"),
43
+ * // MinSize: Number("int"),
44
+ * // MaxSize: Number("int"),
45
+ * // CreatedAt: new Date("TIMESTAMP"),
46
+ * // DeletedAt: new Date("TIMESTAMP"),
47
+ * // },
48
+ * // };
49
+ *
35
50
  * ```
36
51
  *
37
52
  * @param DeleteAutoScalingConfigurationCommandInput - {@link DeleteAutoScalingConfigurationCommandInput}
@@ -49,6 +64,8 @@ export interface DeleteAutoScalingConfigurationCommandOutput extends DeleteAutoS
49
64
  * @throws {@link ResourceNotFoundException} (client fault)
50
65
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
51
66
  *
67
+ * @throws {@link AppRunnerServiceException}
68
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
52
69
  *
53
70
  */
54
71
  export declare class DeleteAutoScalingConfigurationCommand extends $Command<DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
@@ -32,6 +32,16 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse,
32
32
  * };
33
33
  * const command = new DeleteConnectionCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeleteConnectionResponse
36
+ * // Connection: { // Connection
37
+ * // ConnectionName: "STRING_VALUE",
38
+ * // ConnectionArn: "STRING_VALUE",
39
+ * // ProviderType: "GITHUB",
40
+ * // Status: "PENDING_HANDSHAKE" || "AVAILABLE" || "ERROR" || "DELETED",
41
+ * // CreatedAt: new Date("TIMESTAMP"),
42
+ * // },
43
+ * // };
44
+ *
35
45
  * ```
36
46
  *
37
47
  * @param DeleteConnectionCommandInput - {@link DeleteConnectionCommandInput}
@@ -49,6 +59,8 @@ export interface DeleteConnectionCommandOutput extends DeleteConnectionResponse,
49
59
  * @throws {@link ResourceNotFoundException} (client fault)
50
60
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
51
61
  *
62
+ * @throws {@link AppRunnerServiceException}
63
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
52
64
  *
53
65
  */
54
66
  export declare class DeleteConnectionCommand extends $Command<DeleteConnectionCommandInput, DeleteConnectionCommandOutput, AppRunnerClientResolvedConfig> {
@@ -32,6 +32,21 @@ export interface DeleteObservabilityConfigurationCommandOutput extends DeleteObs
32
32
  * };
33
33
  * const command = new DeleteObservabilityConfigurationCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeleteObservabilityConfigurationResponse
36
+ * // ObservabilityConfiguration: { // ObservabilityConfiguration
37
+ * // ObservabilityConfigurationArn: "STRING_VALUE",
38
+ * // ObservabilityConfigurationName: "STRING_VALUE",
39
+ * // TraceConfiguration: { // TraceConfiguration
40
+ * // Vendor: "AWSXRAY", // required
41
+ * // },
42
+ * // ObservabilityConfigurationRevision: Number("int"),
43
+ * // Latest: true || false,
44
+ * // Status: "ACTIVE" || "INACTIVE",
45
+ * // CreatedAt: new Date("TIMESTAMP"),
46
+ * // DeletedAt: new Date("TIMESTAMP"),
47
+ * // },
48
+ * // };
49
+ *
35
50
  * ```
36
51
  *
37
52
  * @param DeleteObservabilityConfigurationCommandInput - {@link DeleteObservabilityConfigurationCommandInput}
@@ -49,6 +64,8 @@ export interface DeleteObservabilityConfigurationCommandOutput extends DeleteObs
49
64
  * @throws {@link ResourceNotFoundException} (client fault)
50
65
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
51
66
  *
67
+ * @throws {@link AppRunnerServiceException}
68
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
52
69
  *
53
70
  */
54
71
  export declare class DeleteObservabilityConfigurationCommand extends $Command<DeleteObservabilityConfigurationCommandInput, DeleteObservabilityConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
@@ -37,6 +37,97 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
37
37
  * };
38
38
  * const command = new DeleteServiceCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // DeleteServiceResponse
41
+ * // Service: { // Service
42
+ * // ServiceName: "STRING_VALUE", // required
43
+ * // ServiceId: "STRING_VALUE", // required
44
+ * // ServiceArn: "STRING_VALUE", // required
45
+ * // ServiceUrl: "STRING_VALUE",
46
+ * // CreatedAt: new Date("TIMESTAMP"), // required
47
+ * // UpdatedAt: new Date("TIMESTAMP"), // required
48
+ * // DeletedAt: new Date("TIMESTAMP"),
49
+ * // Status: "CREATE_FAILED" || "RUNNING" || "DELETED" || "DELETE_FAILED" || "PAUSED" || "OPERATION_IN_PROGRESS", // required
50
+ * // SourceConfiguration: { // SourceConfiguration
51
+ * // CodeRepository: { // CodeRepository
52
+ * // RepositoryUrl: "STRING_VALUE", // required
53
+ * // SourceCodeVersion: { // SourceCodeVersion
54
+ * // Type: "BRANCH", // required
55
+ * // Value: "STRING_VALUE", // required
56
+ * // },
57
+ * // CodeConfiguration: { // CodeConfiguration
58
+ * // ConfigurationSource: "REPOSITORY" || "API", // required
59
+ * // CodeConfigurationValues: { // CodeConfigurationValues
60
+ * // Runtime: "PYTHON_3" || "NODEJS_12" || "NODEJS_14" || "CORRETTO_8" || "CORRETTO_11" || "NODEJS_16" || "GO_1" || "DOTNET_6" || "PHP_81" || "RUBY_31", // required
61
+ * // BuildCommand: "STRING_VALUE",
62
+ * // StartCommand: "STRING_VALUE",
63
+ * // Port: "STRING_VALUE",
64
+ * // RuntimeEnvironmentVariables: { // RuntimeEnvironmentVariables
65
+ * // "<keys>": "STRING_VALUE",
66
+ * // },
67
+ * // RuntimeEnvironmentSecrets: { // RuntimeEnvironmentSecrets
68
+ * // "<keys>": "STRING_VALUE",
69
+ * // },
70
+ * // },
71
+ * // },
72
+ * // },
73
+ * // ImageRepository: { // ImageRepository
74
+ * // ImageIdentifier: "STRING_VALUE", // required
75
+ * // ImageConfiguration: { // ImageConfiguration
76
+ * // RuntimeEnvironmentVariables: {
77
+ * // "<keys>": "STRING_VALUE",
78
+ * // },
79
+ * // StartCommand: "STRING_VALUE",
80
+ * // Port: "STRING_VALUE",
81
+ * // RuntimeEnvironmentSecrets: {
82
+ * // "<keys>": "STRING_VALUE",
83
+ * // },
84
+ * // },
85
+ * // ImageRepositoryType: "ECR" || "ECR_PUBLIC", // required
86
+ * // },
87
+ * // AutoDeploymentsEnabled: true || false,
88
+ * // AuthenticationConfiguration: { // AuthenticationConfiguration
89
+ * // ConnectionArn: "STRING_VALUE",
90
+ * // AccessRoleArn: "STRING_VALUE",
91
+ * // },
92
+ * // },
93
+ * // InstanceConfiguration: { // InstanceConfiguration
94
+ * // Cpu: "STRING_VALUE",
95
+ * // Memory: "STRING_VALUE",
96
+ * // InstanceRoleArn: "STRING_VALUE",
97
+ * // },
98
+ * // EncryptionConfiguration: { // EncryptionConfiguration
99
+ * // KmsKey: "STRING_VALUE", // required
100
+ * // },
101
+ * // HealthCheckConfiguration: { // HealthCheckConfiguration
102
+ * // Protocol: "TCP" || "HTTP",
103
+ * // Path: "STRING_VALUE",
104
+ * // Interval: Number("int"),
105
+ * // Timeout: Number("int"),
106
+ * // HealthyThreshold: Number("int"),
107
+ * // UnhealthyThreshold: Number("int"),
108
+ * // },
109
+ * // AutoScalingConfigurationSummary: { // AutoScalingConfigurationSummary
110
+ * // AutoScalingConfigurationArn: "STRING_VALUE",
111
+ * // AutoScalingConfigurationName: "STRING_VALUE",
112
+ * // AutoScalingConfigurationRevision: Number("int"),
113
+ * // },
114
+ * // NetworkConfiguration: { // NetworkConfiguration
115
+ * // EgressConfiguration: { // EgressConfiguration
116
+ * // EgressType: "DEFAULT" || "VPC",
117
+ * // VpcConnectorArn: "STRING_VALUE",
118
+ * // },
119
+ * // IngressConfiguration: { // IngressConfiguration
120
+ * // IsPubliclyAccessible: true || false,
121
+ * // },
122
+ * // },
123
+ * // ObservabilityConfiguration: { // ServiceObservabilityConfiguration
124
+ * // ObservabilityEnabled: true || false, // required
125
+ * // ObservabilityConfigurationArn: "STRING_VALUE",
126
+ * // },
127
+ * // },
128
+ * // OperationId: "STRING_VALUE", // required
129
+ * // };
130
+ *
40
131
  * ```
41
132
  *
42
133
  * @param DeleteServiceCommandInput - {@link DeleteServiceCommandInput}
@@ -57,6 +148,8 @@ export interface DeleteServiceCommandOutput extends DeleteServiceResponse, __Met
57
148
  * @throws {@link ResourceNotFoundException} (client fault)
58
149
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
59
150
  *
151
+ * @throws {@link AppRunnerServiceException}
152
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
60
153
  *
61
154
  */
62
155
  export declare class DeleteServiceCommand extends $Command<DeleteServiceCommandInput, DeleteServiceCommandOutput, AppRunnerClientResolvedConfig> {
@@ -32,6 +32,23 @@ export interface DeleteVpcConnectorCommandOutput extends DeleteVpcConnectorRespo
32
32
  * };
33
33
  * const command = new DeleteVpcConnectorCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DeleteVpcConnectorResponse
36
+ * // VpcConnector: { // VpcConnector
37
+ * // VpcConnectorName: "STRING_VALUE",
38
+ * // VpcConnectorArn: "STRING_VALUE",
39
+ * // VpcConnectorRevision: Number("int"),
40
+ * // Subnets: [ // StringList
41
+ * // "STRING_VALUE",
42
+ * // ],
43
+ * // SecurityGroups: [
44
+ * // "STRING_VALUE",
45
+ * // ],
46
+ * // Status: "ACTIVE" || "INACTIVE",
47
+ * // CreatedAt: new Date("TIMESTAMP"),
48
+ * // DeletedAt: new Date("TIMESTAMP"),
49
+ * // },
50
+ * // };
51
+ *
35
52
  * ```
36
53
  *
37
54
  * @param DeleteVpcConnectorCommandInput - {@link DeleteVpcConnectorCommandInput}
@@ -49,6 +66,8 @@ export interface DeleteVpcConnectorCommandOutput extends DeleteVpcConnectorRespo
49
66
  * @throws {@link ResourceNotFoundException} (client fault)
50
67
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
51
68
  *
69
+ * @throws {@link AppRunnerServiceException}
70
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
52
71
  *
53
72
  */
54
73
  export declare class DeleteVpcConnectorCommand extends $Command<DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput, AppRunnerClientResolvedConfig> {
@@ -54,6 +54,23 @@ export interface DeleteVpcIngressConnectionCommandOutput extends DeleteVpcIngres
54
54
  * };
55
55
  * const command = new DeleteVpcIngressConnectionCommand(input);
56
56
  * const response = await client.send(command);
57
+ * // { // DeleteVpcIngressConnectionResponse
58
+ * // VpcIngressConnection: { // VpcIngressConnection
59
+ * // VpcIngressConnectionArn: "STRING_VALUE",
60
+ * // VpcIngressConnectionName: "STRING_VALUE",
61
+ * // ServiceArn: "STRING_VALUE",
62
+ * // Status: "AVAILABLE" || "PENDING_CREATION" || "PENDING_UPDATE" || "PENDING_DELETION" || "FAILED_CREATION" || "FAILED_UPDATE" || "FAILED_DELETION" || "DELETED",
63
+ * // AccountId: "STRING_VALUE",
64
+ * // DomainName: "STRING_VALUE",
65
+ * // IngressVpcConfiguration: { // IngressVpcConfiguration
66
+ * // VpcId: "STRING_VALUE",
67
+ * // VpcEndpointId: "STRING_VALUE",
68
+ * // },
69
+ * // CreatedAt: new Date("TIMESTAMP"),
70
+ * // DeletedAt: new Date("TIMESTAMP"),
71
+ * // },
72
+ * // };
73
+ *
57
74
  * ```
58
75
  *
59
76
  * @param DeleteVpcIngressConnectionCommandInput - {@link DeleteVpcIngressConnectionCommandInput}
@@ -74,6 +91,8 @@ export interface DeleteVpcIngressConnectionCommandOutput extends DeleteVpcIngres
74
91
  * @throws {@link ResourceNotFoundException} (client fault)
75
92
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
76
93
  *
94
+ * @throws {@link AppRunnerServiceException}
95
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
77
96
  *
78
97
  */
79
98
  export declare class DeleteVpcIngressConnectionCommand extends $Command<DeleteVpcIngressConnectionCommandInput, DeleteVpcIngressConnectionCommandOutput, AppRunnerClientResolvedConfig> {
@@ -31,6 +31,21 @@ export interface DescribeAutoScalingConfigurationCommandOutput extends DescribeA
31
31
  * };
32
32
  * const command = new DescribeAutoScalingConfigurationCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeAutoScalingConfigurationResponse
35
+ * // AutoScalingConfiguration: { // AutoScalingConfiguration
36
+ * // AutoScalingConfigurationArn: "STRING_VALUE",
37
+ * // AutoScalingConfigurationName: "STRING_VALUE",
38
+ * // AutoScalingConfigurationRevision: Number("int"),
39
+ * // Latest: true || false,
40
+ * // Status: "ACTIVE" || "INACTIVE",
41
+ * // MaxConcurrency: Number("int"),
42
+ * // MinSize: Number("int"),
43
+ * // MaxSize: Number("int"),
44
+ * // CreatedAt: new Date("TIMESTAMP"),
45
+ * // DeletedAt: new Date("TIMESTAMP"),
46
+ * // },
47
+ * // };
48
+ *
34
49
  * ```
35
50
  *
36
51
  * @param DescribeAutoScalingConfigurationCommandInput - {@link DescribeAutoScalingConfigurationCommandInput}
@@ -48,6 +63,8 @@ export interface DescribeAutoScalingConfigurationCommandOutput extends DescribeA
48
63
  * @throws {@link ResourceNotFoundException} (client fault)
49
64
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
50
65
  *
66
+ * @throws {@link AppRunnerServiceException}
67
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
51
68
  *
52
69
  */
53
70
  export declare class DescribeAutoScalingConfigurationCommand extends $Command<DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
@@ -33,6 +33,34 @@ export interface DescribeCustomDomainsCommandOutput extends DescribeCustomDomain
33
33
  * };
34
34
  * const command = new DescribeCustomDomainsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeCustomDomainsResponse
37
+ * // DNSTarget: "STRING_VALUE", // required
38
+ * // ServiceArn: "STRING_VALUE", // required
39
+ * // CustomDomains: [ // CustomDomainList // required
40
+ * // { // CustomDomain
41
+ * // DomainName: "STRING_VALUE", // required
42
+ * // EnableWWWSubdomain: true || false, // required
43
+ * // CertificateValidationRecords: [ // CertificateValidationRecordList
44
+ * // { // CertificateValidationRecord
45
+ * // Name: "STRING_VALUE",
46
+ * // Type: "STRING_VALUE",
47
+ * // Value: "STRING_VALUE",
48
+ * // Status: "PENDING_VALIDATION" || "SUCCESS" || "FAILED",
49
+ * // },
50
+ * // ],
51
+ * // Status: "CREATING" || "CREATE_FAILED" || "ACTIVE" || "DELETING" || "DELETE_FAILED" || "PENDING_CERTIFICATE_DNS_VALIDATION" || "BINDING_CERTIFICATE", // required
52
+ * // },
53
+ * // ],
54
+ * // VpcDNSTargets: [ // VpcDNSTargetList // required
55
+ * // { // VpcDNSTarget
56
+ * // VpcIngressConnectionArn: "STRING_VALUE",
57
+ * // VpcId: "STRING_VALUE",
58
+ * // DomainName: "STRING_VALUE",
59
+ * // },
60
+ * // ],
61
+ * // NextToken: "STRING_VALUE",
62
+ * // };
63
+ *
36
64
  * ```
37
65
  *
38
66
  * @param DescribeCustomDomainsCommandInput - {@link DescribeCustomDomainsCommandInput}
@@ -50,6 +78,8 @@ export interface DescribeCustomDomainsCommandOutput extends DescribeCustomDomain
50
78
  * @throws {@link ResourceNotFoundException} (client fault)
51
79
  * <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
52
80
  *
81
+ * @throws {@link AppRunnerServiceException}
82
+ * <p>Base exception class for all service exceptions from AppRunner service.</p>
53
83
  *
54
84
  */
55
85
  export declare class DescribeCustomDomainsCommand extends $Command<DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput, AppRunnerClientResolvedConfig> {