cdk-lambda-subminute 2.0.407 → 2.0.409

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 (31) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/cloudformation-2010-05-15.min.json +35 -0
  5. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +305 -258
  6. package/node_modules/aws-sdk/apis/ec2-2016-11-15.paginators.json +6 -0
  7. package/node_modules/aws-sdk/apis/finspace-2021-03-12.min.json +57 -39
  8. package/node_modules/aws-sdk/apis/kms-2014-11-01.min.json +3 -4
  9. package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +9 -1
  10. package/node_modules/aws-sdk/apis/managedblockchain-query-2023-05-04.min.json +128 -34
  11. package/node_modules/aws-sdk/apis/managedblockchain-query-2023-05-04.paginators.json +6 -0
  12. package/node_modules/aws-sdk/apis/mediatailor-2018-04-23.min.json +291 -215
  13. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +155 -133
  14. package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +119 -119
  15. package/node_modules/aws-sdk/apis/s3-2006-03-01.min.json +4 -2
  16. package/node_modules/aws-sdk/clients/cloudformation.d.ts +98 -51
  17. package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +32 -23
  18. package/node_modules/aws-sdk/clients/ec2.d.ts +49 -0
  19. package/node_modules/aws-sdk/clients/finspace.d.ts +37 -13
  20. package/node_modules/aws-sdk/clients/kms.d.ts +10 -6
  21. package/node_modules/aws-sdk/clients/managedblockchainquery.d.ts +125 -20
  22. package/node_modules/aws-sdk/clients/mediatailor.d.ts +98 -2
  23. package/node_modules/aws-sdk/clients/rds.d.ts +44 -0
  24. package/node_modules/aws-sdk/clients/timestreamquery.d.ts +3 -3
  25. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  26. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +12 -12
  27. package/node_modules/aws-sdk/dist/aws-sdk.js +520 -401
  28. package/node_modules/aws-sdk/dist/aws-sdk.min.js +101 -101
  29. package/node_modules/aws-sdk/lib/core.js +1 -1
  30. package/node_modules/aws-sdk/package.json +1 -1
  31. package/package.json +3 -3
@@ -236,11 +236,11 @@ declare class KMS extends Service {
236
236
  */
237
237
  getPublicKey(callback?: (err: AWSError, data: KMS.Types.GetPublicKeyResponse) => void): Request<KMS.Types.GetPublicKeyResponse, AWSError>;
238
238
  /**
239
- * Imports or reimports key material into an existing KMS key that was created without key material. ImportKeyMaterial also sets the expiration model and expiration date of the imported key material. By default, KMS keys are created with key material that KMS generates. This operation supports Importing key material, an advanced feature that lets you generate and import the cryptographic key material for a KMS key. For more information about importing key material into KMS, see Importing key material in the Key Management Service Developer Guide. After you successfully import key material into a KMS key, you can reimport the same key material into that KMS key, but you cannot import different key material. You might reimport key material to replace key material that expired or key material that you deleted. You might also reimport key material to change the expiration model or expiration date of the key material. Before reimporting key material, if necessary, call DeleteImportedKeyMaterial to delete the current imported key material. Each time you import key material into KMS, you can determine whether (ExpirationModel) and when (ValidTo) the key material expires. To change the expiration of your key material, you must import it again, either by calling ImportKeyMaterial or using the import features of the KMS console. Before calling ImportKeyMaterial: Create or identify a KMS key with no key material. The KMS key must have an Origin value of EXTERNAL, which indicates that the KMS key is designed for imported key material. To create an new KMS key for imported key material, call the CreateKey operation with an Origin value of EXTERNAL. You can create a symmetric encryption KMS key, HMAC KMS key, asymmetric encryption KMS key, or asymmetric signing KMS key. You can also import key material into a multi-Region key of any supported type. However, you can't import key material into a KMS key in a custom key store. Use the DescribeKey operation to verify that the KeyState of the KMS key is PendingImport, which indicates that the KMS key has no key material. If you are reimporting the same key material into an existing KMS key, you might need to call the DeleteImportedKeyMaterial to delete its existing key material. Call the GetParametersForImport operation to get a public key and import token set for importing key material. Use the public key in the GetParametersForImport response to encrypt your key material. Then, in an ImportKeyMaterial request, you submit your encrypted key material and import token. When calling this operation, you must specify the following values: The key ID or key ARN of the KMS key to associate with the imported key material. Its Origin must be EXTERNAL and its KeyState must be PendingImport. You cannot perform this operation on a KMS key in a custom key store, or on a KMS key in a different Amazon Web Services account. To get the Origin and KeyState of a KMS key, call DescribeKey. The encrypted key material. The import token that GetParametersForImport returned. You must use a public key and token from the same GetParametersForImport response. Whether the key material expires (ExpirationModel) and, if so, when (ValidTo). For help with this choice, see Setting an expiration time in the Key Management Service Developer Guide. If you set an expiration date, KMS deletes the key material from the KMS key on the specified date, making the KMS key unusable. To use the KMS key in cryptographic operations again, you must reimport the same key material. However, you can delete and reimport the key material at any time, including before the key material expires. Each time you reimport, you can eliminate or reset the expiration time. When this operation is successful, the key state of the KMS key changes from PendingImport to Enabled, and you can use the KMS key in cryptographic operations. If this operation fails, use the exception to help determine the problem. If the error is related to the key material, the import token, or wrapping key, use GetParametersForImport to get a new public key and import token for the KMS key and repeat the import procedure. For help, see How To Import Key Material in the Key Management Service Developer Guide. The KMS key that you use for this operation must be in a compatible key state. For details, see Key states of KMS keys in the Key Management Service Developer Guide. Cross-account use: No. You cannot perform this operation on a KMS key in a different Amazon Web Services account. Required permissions: kms:ImportKeyMaterial (key policy) Related operations: DeleteImportedKeyMaterial GetParametersForImport Eventual consistency: The KMS API follows an eventual consistency model. For more information, see KMS eventual consistency.
239
+ * Imports or reimports key material into an existing KMS key that was created without key material. ImportKeyMaterial also sets the expiration model and expiration date of the imported key material. By default, KMS keys are created with key material that KMS generates. This operation supports Importing key material, an advanced feature that lets you generate and import the cryptographic key material for a KMS key. For more information about importing key material into KMS, see Importing key material in the Key Management Service Developer Guide. After you successfully import key material into a KMS key, you can reimport the same key material into that KMS key, but you cannot import different key material. You might reimport key material to replace key material that expired or key material that you deleted. You might also reimport key material to change the expiration model or expiration date of the key material. Each time you import key material into KMS, you can determine whether (ExpirationModel) and when (ValidTo) the key material expires. To change the expiration of your key material, you must import it again, either by calling ImportKeyMaterial or using the import features of the KMS console. Before calling ImportKeyMaterial: Create or identify a KMS key with no key material. The KMS key must have an Origin value of EXTERNAL, which indicates that the KMS key is designed for imported key material. To create an new KMS key for imported key material, call the CreateKey operation with an Origin value of EXTERNAL. You can create a symmetric encryption KMS key, HMAC KMS key, asymmetric encryption KMS key, or asymmetric signing KMS key. You can also import key material into a multi-Region key of any supported type. However, you can't import key material into a KMS key in a custom key store. Use the DescribeKey operation to verify that the KeyState of the KMS key is PendingImport, which indicates that the KMS key has no key material. If you are reimporting the same key material into an existing KMS key, you might need to call the DeleteImportedKeyMaterial to delete its existing key material. Call the GetParametersForImport operation to get a public key and import token set for importing key material. Use the public key in the GetParametersForImport response to encrypt your key material. Then, in an ImportKeyMaterial request, you submit your encrypted key material and import token. When calling this operation, you must specify the following values: The key ID or key ARN of the KMS key to associate with the imported key material. Its Origin must be EXTERNAL and its KeyState must be PendingImport. You cannot perform this operation on a KMS key in a custom key store, or on a KMS key in a different Amazon Web Services account. To get the Origin and KeyState of a KMS key, call DescribeKey. The encrypted key material. The import token that GetParametersForImport returned. You must use a public key and token from the same GetParametersForImport response. Whether the key material expires (ExpirationModel) and, if so, when (ValidTo). For help with this choice, see Setting an expiration time in the Key Management Service Developer Guide. If you set an expiration date, KMS deletes the key material from the KMS key on the specified date, making the KMS key unusable. To use the KMS key in cryptographic operations again, you must reimport the same key material. However, you can delete and reimport the key material at any time, including before the key material expires. Each time you reimport, you can eliminate or reset the expiration time. When this operation is successful, the key state of the KMS key changes from PendingImport to Enabled, and you can use the KMS key in cryptographic operations. If this operation fails, use the exception to help determine the problem. If the error is related to the key material, the import token, or wrapping key, use GetParametersForImport to get a new public key and import token for the KMS key and repeat the import procedure. For help, see How To Import Key Material in the Key Management Service Developer Guide. The KMS key that you use for this operation must be in a compatible key state. For details, see Key states of KMS keys in the Key Management Service Developer Guide. Cross-account use: No. You cannot perform this operation on a KMS key in a different Amazon Web Services account. Required permissions: kms:ImportKeyMaterial (key policy) Related operations: DeleteImportedKeyMaterial GetParametersForImport Eventual consistency: The KMS API follows an eventual consistency model. For more information, see KMS eventual consistency.
240
240
  */
241
241
  importKeyMaterial(params: KMS.Types.ImportKeyMaterialRequest, callback?: (err: AWSError, data: KMS.Types.ImportKeyMaterialResponse) => void): Request<KMS.Types.ImportKeyMaterialResponse, AWSError>;
242
242
  /**
243
- * Imports or reimports key material into an existing KMS key that was created without key material. ImportKeyMaterial also sets the expiration model and expiration date of the imported key material. By default, KMS keys are created with key material that KMS generates. This operation supports Importing key material, an advanced feature that lets you generate and import the cryptographic key material for a KMS key. For more information about importing key material into KMS, see Importing key material in the Key Management Service Developer Guide. After you successfully import key material into a KMS key, you can reimport the same key material into that KMS key, but you cannot import different key material. You might reimport key material to replace key material that expired or key material that you deleted. You might also reimport key material to change the expiration model or expiration date of the key material. Before reimporting key material, if necessary, call DeleteImportedKeyMaterial to delete the current imported key material. Each time you import key material into KMS, you can determine whether (ExpirationModel) and when (ValidTo) the key material expires. To change the expiration of your key material, you must import it again, either by calling ImportKeyMaterial or using the import features of the KMS console. Before calling ImportKeyMaterial: Create or identify a KMS key with no key material. The KMS key must have an Origin value of EXTERNAL, which indicates that the KMS key is designed for imported key material. To create an new KMS key for imported key material, call the CreateKey operation with an Origin value of EXTERNAL. You can create a symmetric encryption KMS key, HMAC KMS key, asymmetric encryption KMS key, or asymmetric signing KMS key. You can also import key material into a multi-Region key of any supported type. However, you can't import key material into a KMS key in a custom key store. Use the DescribeKey operation to verify that the KeyState of the KMS key is PendingImport, which indicates that the KMS key has no key material. If you are reimporting the same key material into an existing KMS key, you might need to call the DeleteImportedKeyMaterial to delete its existing key material. Call the GetParametersForImport operation to get a public key and import token set for importing key material. Use the public key in the GetParametersForImport response to encrypt your key material. Then, in an ImportKeyMaterial request, you submit your encrypted key material and import token. When calling this operation, you must specify the following values: The key ID or key ARN of the KMS key to associate with the imported key material. Its Origin must be EXTERNAL and its KeyState must be PendingImport. You cannot perform this operation on a KMS key in a custom key store, or on a KMS key in a different Amazon Web Services account. To get the Origin and KeyState of a KMS key, call DescribeKey. The encrypted key material. The import token that GetParametersForImport returned. You must use a public key and token from the same GetParametersForImport response. Whether the key material expires (ExpirationModel) and, if so, when (ValidTo). For help with this choice, see Setting an expiration time in the Key Management Service Developer Guide. If you set an expiration date, KMS deletes the key material from the KMS key on the specified date, making the KMS key unusable. To use the KMS key in cryptographic operations again, you must reimport the same key material. However, you can delete and reimport the key material at any time, including before the key material expires. Each time you reimport, you can eliminate or reset the expiration time. When this operation is successful, the key state of the KMS key changes from PendingImport to Enabled, and you can use the KMS key in cryptographic operations. If this operation fails, use the exception to help determine the problem. If the error is related to the key material, the import token, or wrapping key, use GetParametersForImport to get a new public key and import token for the KMS key and repeat the import procedure. For help, see How To Import Key Material in the Key Management Service Developer Guide. The KMS key that you use for this operation must be in a compatible key state. For details, see Key states of KMS keys in the Key Management Service Developer Guide. Cross-account use: No. You cannot perform this operation on a KMS key in a different Amazon Web Services account. Required permissions: kms:ImportKeyMaterial (key policy) Related operations: DeleteImportedKeyMaterial GetParametersForImport Eventual consistency: The KMS API follows an eventual consistency model. For more information, see KMS eventual consistency.
243
+ * Imports or reimports key material into an existing KMS key that was created without key material. ImportKeyMaterial also sets the expiration model and expiration date of the imported key material. By default, KMS keys are created with key material that KMS generates. This operation supports Importing key material, an advanced feature that lets you generate and import the cryptographic key material for a KMS key. For more information about importing key material into KMS, see Importing key material in the Key Management Service Developer Guide. After you successfully import key material into a KMS key, you can reimport the same key material into that KMS key, but you cannot import different key material. You might reimport key material to replace key material that expired or key material that you deleted. You might also reimport key material to change the expiration model or expiration date of the key material. Each time you import key material into KMS, you can determine whether (ExpirationModel) and when (ValidTo) the key material expires. To change the expiration of your key material, you must import it again, either by calling ImportKeyMaterial or using the import features of the KMS console. Before calling ImportKeyMaterial: Create or identify a KMS key with no key material. The KMS key must have an Origin value of EXTERNAL, which indicates that the KMS key is designed for imported key material. To create an new KMS key for imported key material, call the CreateKey operation with an Origin value of EXTERNAL. You can create a symmetric encryption KMS key, HMAC KMS key, asymmetric encryption KMS key, or asymmetric signing KMS key. You can also import key material into a multi-Region key of any supported type. However, you can't import key material into a KMS key in a custom key store. Use the DescribeKey operation to verify that the KeyState of the KMS key is PendingImport, which indicates that the KMS key has no key material. If you are reimporting the same key material into an existing KMS key, you might need to call the DeleteImportedKeyMaterial to delete its existing key material. Call the GetParametersForImport operation to get a public key and import token set for importing key material. Use the public key in the GetParametersForImport response to encrypt your key material. Then, in an ImportKeyMaterial request, you submit your encrypted key material and import token. When calling this operation, you must specify the following values: The key ID or key ARN of the KMS key to associate with the imported key material. Its Origin must be EXTERNAL and its KeyState must be PendingImport. You cannot perform this operation on a KMS key in a custom key store, or on a KMS key in a different Amazon Web Services account. To get the Origin and KeyState of a KMS key, call DescribeKey. The encrypted key material. The import token that GetParametersForImport returned. You must use a public key and token from the same GetParametersForImport response. Whether the key material expires (ExpirationModel) and, if so, when (ValidTo). For help with this choice, see Setting an expiration time in the Key Management Service Developer Guide. If you set an expiration date, KMS deletes the key material from the KMS key on the specified date, making the KMS key unusable. To use the KMS key in cryptographic operations again, you must reimport the same key material. However, you can delete and reimport the key material at any time, including before the key material expires. Each time you reimport, you can eliminate or reset the expiration time. When this operation is successful, the key state of the KMS key changes from PendingImport to Enabled, and you can use the KMS key in cryptographic operations. If this operation fails, use the exception to help determine the problem. If the error is related to the key material, the import token, or wrapping key, use GetParametersForImport to get a new public key and import token for the KMS key and repeat the import procedure. For help, see How To Import Key Material in the Key Management Service Developer Guide. The KMS key that you use for this operation must be in a compatible key state. For details, see Key states of KMS keys in the Key Management Service Developer Guide. Cross-account use: No. You cannot perform this operation on a KMS key in a different Amazon Web Services account. Required permissions: kms:ImportKeyMaterial (key policy) Related operations: DeleteImportedKeyMaterial GetParametersForImport Eventual consistency: The KMS API follows an eventual consistency model. For more information, see KMS eventual consistency.
244
244
  */
245
245
  importKeyMaterial(callback?: (err: AWSError, data: KMS.Types.ImportKeyMaterialResponse) => void): Request<KMS.Types.ImportKeyMaterialResponse, AWSError>;
246
246
  /**
@@ -1103,15 +1103,19 @@ declare namespace KMS {
1103
1103
  */
1104
1104
  KeyId: KeyIdType;
1105
1105
  /**
1106
- * Specifies the name of the key policy. The only valid name is default. To get the names of key policies, use ListKeyPolicies.
1106
+ * Specifies the name of the key policy. If no policy name is specified, the default value is default. The only valid name is default. To get the names of key policies, use ListKeyPolicies.
1107
1107
  */
1108
- PolicyName: PolicyNameType;
1108
+ PolicyName?: PolicyNameType;
1109
1109
  }
1110
1110
  export interface GetKeyPolicyResponse {
1111
1111
  /**
1112
1112
  * A key policy document in JSON format.
1113
1113
  */
1114
1114
  Policy?: PolicyType;
1115
+ /**
1116
+ * The name of the key policy. The only valid value is default.
1117
+ */
1118
+ PolicyName?: PolicyNameType;
1115
1119
  }
1116
1120
  export interface GetKeyRotationStatusRequest {
1117
1121
  /**
@@ -1597,9 +1601,9 @@ declare namespace KMS {
1597
1601
  */
1598
1602
  KeyId: KeyIdType;
1599
1603
  /**
1600
- * The name of the key policy. The only valid value is default.
1604
+ * The name of the key policy. If no policy name is specified, the default value is default. The only valid value is default.
1601
1605
  */
1602
- PolicyName: PolicyNameType;
1606
+ PolicyName?: PolicyNameType;
1603
1607
  /**
1604
1608
  * The key policy to attach to the KMS key. The key policy must meet the following criteria: The key policy must allow the calling principal to make a subsequent PutKeyPolicy request on the KMS key. This reduces the risk that the KMS key becomes unmanageable. For more information, see Default key policy in the Key Management Service Developer Guide. (To omit this condition, set BypassPolicyLockoutSafetyCheck to true.) Each statement in the key policy must contain one or more principals. The principals in the key policy must exist and be visible to KMS. When you create a new Amazon Web Services principal, you might need to enforce a delay before including the new principal in a key policy because the new principal might not be immediately visible to KMS. For more information, see Changes that I make are not always immediately visible in the Amazon Web Services Identity and Access Management User Guide. A key policy document can include only the following characters: Printable ASCII characters from the space character (\u0020) through the end of the ASCII character range. Printable characters in the Basic Latin and Latin-1 Supplement character set (through \u00FF). The tab (\u0009), line feed (\u000A), and carriage return (\u000D) special characters For information about key policies, see Key policies in KMS in the Key Management Service Developer Guide.For help writing and formatting a JSON policy document, see the IAM JSON Policy Reference in the Identity and Access Management User Guide .
1605
1609
  */
@@ -51,6 +51,14 @@ declare class ManagedBlockchainQuery extends Service {
51
51
  * Lists all the contracts for a given contract type deployed by an address (either a contract address or a wallet address). The Bitcoin blockchain networks do not support this operation.
52
52
  */
53
53
  listAssetContracts(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListAssetContractsOutput) => void): Request<ManagedBlockchainQuery.Types.ListAssetContractsOutput, AWSError>;
54
+ /**
55
+ * Lists all the transaction events for an address on the blockchain. This operation is only supported on the Bitcoin networks.
56
+ */
57
+ listFilteredTransactionEvents(params: ManagedBlockchainQuery.Types.ListFilteredTransactionEventsInput, callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListFilteredTransactionEventsOutput) => void): Request<ManagedBlockchainQuery.Types.ListFilteredTransactionEventsOutput, AWSError>;
58
+ /**
59
+ * Lists all the transaction events for an address on the blockchain. This operation is only supported on the Bitcoin networks.
60
+ */
61
+ listFilteredTransactionEvents(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListFilteredTransactionEventsOutput) => void): Request<ManagedBlockchainQuery.Types.ListFilteredTransactionEventsOutput, AWSError>;
54
62
  /**
55
63
  * This action returns the following for a given blockchain network: Lists all token balances owned by an address (either a contract address or a wallet address). Lists all token balances for all tokens created by a contract. Lists all token balances for a given token. You must always specify the network property of the tokenFilter when using this operation.
56
64
  */
@@ -60,23 +68,30 @@ declare class ManagedBlockchainQuery extends Service {
60
68
  */
61
69
  listTokenBalances(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTokenBalancesOutput) => void): Request<ManagedBlockchainQuery.Types.ListTokenBalancesOutput, AWSError>;
62
70
  /**
63
- * An array of TransactionEvent objects. Each object contains details about the transaction event. This action will return transaction details for all transactions that are confirmed on the blockchain, even if they have not reached finality.
71
+ * Lists all the transaction events for a transaction This action will return transaction details for all transactions that are confirmed on the blockchain, even if they have not reached finality.
64
72
  */
65
73
  listTransactionEvents(params: ManagedBlockchainQuery.Types.ListTransactionEventsInput, callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTransactionEventsOutput) => void): Request<ManagedBlockchainQuery.Types.ListTransactionEventsOutput, AWSError>;
66
74
  /**
67
- * An array of TransactionEvent objects. Each object contains details about the transaction event. This action will return transaction details for all transactions that are confirmed on the blockchain, even if they have not reached finality.
75
+ * Lists all the transaction events for a transaction This action will return transaction details for all transactions that are confirmed on the blockchain, even if they have not reached finality.
68
76
  */
69
77
  listTransactionEvents(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTransactionEventsOutput) => void): Request<ManagedBlockchainQuery.Types.ListTransactionEventsOutput, AWSError>;
70
78
  /**
71
- * Lists all of the transactions on a given wallet address or to a specific contract.
79
+ * Lists all the transaction events for a transaction.
72
80
  */
73
81
  listTransactions(params: ManagedBlockchainQuery.Types.ListTransactionsInput, callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTransactionsOutput) => void): Request<ManagedBlockchainQuery.Types.ListTransactionsOutput, AWSError>;
74
82
  /**
75
- * Lists all of the transactions on a given wallet address or to a specific contract.
83
+ * Lists all the transaction events for a transaction.
76
84
  */
77
85
  listTransactions(callback?: (err: AWSError, data: ManagedBlockchainQuery.Types.ListTransactionsOutput) => void): Request<ManagedBlockchainQuery.Types.ListTransactionsOutput, AWSError>;
78
86
  }
79
87
  declare namespace ManagedBlockchainQuery {
88
+ export interface AddressIdentifierFilter {
89
+ /**
90
+ * The container for the recipient address of the transaction.
91
+ */
92
+ transactionEventToAddress: AddressIdentifierFilterTransactionEventToAddressList;
93
+ }
94
+ export type AddressIdentifierFilterTransactionEventToAddressList = ChainAddress[];
80
95
  export interface AssetContract {
81
96
  /**
82
97
  * The container for the contract identifier containing its blockchain network and address.
@@ -149,6 +164,7 @@ declare namespace ManagedBlockchainQuery {
149
164
  */
150
165
  time?: Timestamp;
151
166
  }
167
+ export type Boolean = boolean;
152
168
  export type ChainAddress = string;
153
169
  export type ConfirmationStatus = "FINAL"|"NONFINAL"|string;
154
170
  export interface ConfirmationStatusFilter {
@@ -246,7 +262,7 @@ declare namespace ManagedBlockchainQuery {
246
262
  }
247
263
  export interface GetTransactionInput {
248
264
  /**
249
- * The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
265
+ * The hash of a transaction. It is generated when a transaction is created.
250
266
  */
251
267
  transactionHash: QueryTransactionHash;
252
268
  /**
@@ -271,7 +287,7 @@ declare namespace ManagedBlockchainQuery {
271
287
  */
272
288
  nextToken?: NextToken;
273
289
  /**
274
- * The maximum number of contracts to list. Default:100 Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
290
+ * The maximum number of contracts to list. Default: 100 Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
275
291
  */
276
292
  maxResults?: ListAssetContractsInputMaxResultsInteger;
277
293
  }
@@ -286,6 +302,59 @@ declare namespace ManagedBlockchainQuery {
286
302
  */
287
303
  nextToken?: NextToken;
288
304
  }
305
+ export interface ListFilteredTransactionEventsInput {
306
+ /**
307
+ * The blockchain network where the transaction occurred. Valid Values: BITCOIN_MAINNET | BITCOIN_TESTNET
308
+ */
309
+ network: String;
310
+ /**
311
+ * This is the unique public address on the blockchain for which the transaction events are being requested.
312
+ */
313
+ addressIdentifierFilter: AddressIdentifierFilter;
314
+ /**
315
+ * This container specifies the time frame for the transaction events returned in the response.
316
+ */
317
+ timeFilter?: TimeFilter;
318
+ /**
319
+ * This container specifies filtering attributes related to BITCOIN_VOUT event types
320
+ */
321
+ voutFilter?: VoutFilter;
322
+ confirmationStatusFilter?: ConfirmationStatusFilter;
323
+ /**
324
+ * The order by which the results will be sorted.
325
+ */
326
+ sort?: ListFilteredTransactionEventsSort;
327
+ /**
328
+ * The pagination token that indicates the next set of results to retrieve.
329
+ */
330
+ nextToken?: NextToken;
331
+ /**
332
+ * The maximum number of transaction events to list. Default: 100 Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
333
+ */
334
+ maxResults?: ListFilteredTransactionEventsInputMaxResultsInteger;
335
+ }
336
+ export type ListFilteredTransactionEventsInputMaxResultsInteger = number;
337
+ export interface ListFilteredTransactionEventsOutput {
338
+ /**
339
+ * The transaction events returned by the request.
340
+ */
341
+ events: TransactionEventList;
342
+ /**
343
+ * The pagination token that indicates the next set of results to retrieve.
344
+ */
345
+ nextToken?: NextToken;
346
+ }
347
+ export interface ListFilteredTransactionEventsSort {
348
+ /**
349
+ * Container on how the results will be sorted by?
350
+ */
351
+ sortBy?: ListFilteredTransactionEventsSortBy;
352
+ /**
353
+ * The container for the sort order for ListFilteredTransactionEvents. The SortOrder field only accepts the values ASCENDING and DESCENDING. Not providing SortOrder will default to ASCENDING.
354
+ */
355
+ sortOrder?: SortOrder;
356
+ }
357
+ export type ListFilteredTransactionEventsSortBy = "blockchainInstant"|string;
289
358
  export interface ListTokenBalancesInput {
290
359
  /**
291
360
  * The contract or wallet address on the blockchain network by which to filter the request. You must specify the address property of the ownerFilter when listing balances of tokens owned by the address.
@@ -300,7 +369,7 @@ declare namespace ManagedBlockchainQuery {
300
369
  */
301
370
  nextToken?: NextToken;
302
371
  /**
303
- * The maximum number of token balances to return. Default:100 Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
372
+ * The maximum number of token balances to return. Default: 100 Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
304
373
  */
305
374
  maxResults?: ListTokenBalancesInputMaxResultsInteger;
306
375
  }
@@ -317,9 +386,13 @@ declare namespace ManagedBlockchainQuery {
317
386
  }
318
387
  export interface ListTransactionEventsInput {
319
388
  /**
320
- * The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
389
+ * The hash of a transaction. It is generated when a transaction is created.
321
390
  */
322
- transactionHash: QueryTransactionHash;
391
+ transactionHash?: QueryTransactionHash;
392
+ /**
393
+ * The identifier of a Bitcoin transaction. It is generated when a transaction is created. transactionId is only supported on the Bitcoin networks.
394
+ */
395
+ transactionId?: QueryTransactionId;
323
396
  /**
324
397
  * The blockchain network where the transaction events occurred.
325
398
  */
@@ -329,7 +402,7 @@ declare namespace ManagedBlockchainQuery {
329
402
  */
330
403
  nextToken?: NextToken;
331
404
  /**
332
- * The maximum number of transaction events to list. Default:100 Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
405
+ * The maximum number of transaction events to list. Default: 100 Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
333
406
  */
334
407
  maxResults?: ListTransactionEventsInputMaxResultsInteger;
335
408
  }
@@ -356,7 +429,7 @@ declare namespace ManagedBlockchainQuery {
356
429
  fromBlockchainInstant?: BlockchainInstant;
357
430
  toBlockchainInstant?: BlockchainInstant;
358
431
  /**
359
- * The order by which the results will be sorted. If ASCENNDING is selected, the results will be ordered by fromTime.
432
+ * The order by which the results will be sorted.
360
433
  */
361
434
  sort?: ListTransactionsSort;
362
435
  /**
@@ -364,11 +437,11 @@ declare namespace ManagedBlockchainQuery {
364
437
  */
365
438
  nextToken?: NextToken;
366
439
  /**
367
- * The maximum number of transactions to list. Default:100 Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
440
+ * The maximum number of transactions to list. Default: 100 Even if additional results can be retrieved, the request can return less results than maxResults or an empty array of results. To retrieve the next set of results, make another request with the returned nextToken value. The value of nextToken is null when there are no more results to return
368
441
  */
369
442
  maxResults?: ListTransactionsInputMaxResultsInteger;
370
443
  /**
371
- * This filter is used to include transactions in the response that haven't reached finality . Transactions that have reached finiality are always part of the response.
444
+ * This filter is used to include transactions in the response that haven't reached finality . Transactions that have reached finality are always part of the response.
372
445
  */
373
446
  confirmationStatusFilter?: ConfirmationStatusFilter;
374
447
  }
@@ -413,8 +486,13 @@ declare namespace ManagedBlockchainQuery {
413
486
  export type QueryTokenStandard = "ERC20"|"ERC721"|"ERC1155"|string;
414
487
  export type QueryTransactionEventType = "ERC20_TRANSFER"|"ERC20_MINT"|"ERC20_BURN"|"ERC20_DEPOSIT"|"ERC20_WITHDRAWAL"|"ERC721_TRANSFER"|"ERC1155_TRANSFER"|"BITCOIN_VIN"|"BITCOIN_VOUT"|"INTERNAL_ETH_TRANSFER"|"ETH_TRANSFER"|string;
415
488
  export type QueryTransactionHash = string;
489
+ export type QueryTransactionId = string;
416
490
  export type SortOrder = "ASCENDING"|"DESCENDING"|string;
417
491
  export type String = string;
492
+ export interface TimeFilter {
493
+ from?: BlockchainInstant;
494
+ to?: BlockchainInstant;
495
+ }
418
496
  export type Timestamp = Date;
419
497
  export interface TokenBalance {
420
498
  /**
@@ -477,7 +555,7 @@ declare namespace ManagedBlockchainQuery {
477
555
  */
478
556
  blockHash?: BlockHash;
479
557
  /**
480
- * The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
558
+ * The hash of a transaction. It is generated when a transaction is created.
481
559
  */
482
560
  transactionHash: QueryTransactionHash;
483
561
  /**
@@ -537,7 +615,7 @@ declare namespace ManagedBlockchainQuery {
537
615
  */
538
616
  transactionFee?: String;
539
617
  /**
540
- * The unique identifier of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
618
+ * The identifier of a Bitcoin transaction. It is generated when a transaction is created.
541
619
  */
542
620
  transactionId?: String;
543
621
  /**
@@ -555,7 +633,7 @@ declare namespace ManagedBlockchainQuery {
555
633
  */
556
634
  network: QueryNetwork;
557
635
  /**
558
- * The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
636
+ * The hash of a transaction. It is generated when a transaction is created.
559
637
  */
560
638
  transactionHash: QueryTransactionHash;
561
639
  /**
@@ -575,7 +653,7 @@ declare namespace ManagedBlockchainQuery {
575
653
  */
576
654
  value?: String;
577
655
  /**
578
- * The blockchain address. for the contract
656
+ * The blockchain address for the contract
579
657
  */
580
658
  contractAddress?: ChainAddress;
581
659
  /**
@@ -583,18 +661,39 @@ declare namespace ManagedBlockchainQuery {
583
661
  */
584
662
  tokenId?: QueryTokenId;
585
663
  /**
586
- * The unique identifier of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
664
+ * The identifier of a Bitcoin transaction. It is generated when a transaction is created.
587
665
  */
588
666
  transactionId?: String;
589
667
  /**
590
- * The position of the vout in the transaction output list.
668
+ * The position of the transaction output in the transaction output list.
591
669
  */
592
670
  voutIndex?: Integer;
671
+ /**
672
+ * Specifies if the transaction output is spent or unspent. This is only returned for BITCOIN_VOUT event types. This is only returned for BITCOIN_VOUT event types.
673
+ */
674
+ voutSpent?: Boolean;
675
+ /**
676
+ * The transactionId that created the spent transaction output. This is only returned for BITCOIN_VIN event types.
677
+ */
678
+ spentVoutTransactionId?: String;
679
+ /**
680
+ * The transactionHash that created the spent transaction output. This is only returned for BITCOIN_VIN event types.
681
+ */
682
+ spentVoutTransactionHash?: String;
683
+ /**
684
+ * The position of the spent transaction output in the output list of the creating transaction. This is only returned for BITCOIN_VIN event types.
685
+ */
686
+ spentVoutIndex?: Integer;
687
+ blockchainInstant?: BlockchainInstant;
688
+ /**
689
+ * This container specifies whether the transaction has reached Finality.
690
+ */
691
+ confirmationStatus?: ConfirmationStatus;
593
692
  }
594
693
  export type TransactionEventList = TransactionEvent[];
595
694
  export interface TransactionOutputItem {
596
695
  /**
597
- * The hash of the transaction. It is generated whenever a transaction is verified and added to the blockchain.
696
+ * The hash of a transaction. It is generated when a transaction is created.
598
697
  */
599
698
  transactionHash: QueryTransactionHash;
600
699
  /**
@@ -611,6 +710,12 @@ declare namespace ManagedBlockchainQuery {
611
710
  confirmationStatus?: ConfirmationStatus;
612
711
  }
613
712
  export type TransactionOutputList = TransactionOutputItem[];
713
+ export interface VoutFilter {
714
+ /**
715
+ * Specifies if the transaction output is spent or unspent.
716
+ */
717
+ voutSpent: Boolean;
718
+ }
614
719
  /**
615
720
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
616
721
  */
@@ -444,6 +444,44 @@ declare namespace MediaTailor {
444
444
  ResourceArn: __string;
445
445
  }
446
446
  export type AlertCategory = "SCHEDULING_ERROR"|"PLAYBACK_WARNING"|"INFO"|string;
447
+ export interface AlternateMedia {
448
+ /**
449
+ * Ad break configuration parameters defined in AlternateMedia.
450
+ */
451
+ AdBreaks?: __listOfAdBreak;
452
+ ClipRange?: ClipRange;
453
+ /**
454
+ * The duration of the alternateMedia in milliseconds.
455
+ */
456
+ DurationMillis?: __long;
457
+ /**
458
+ * The name of the live source for alternateMedia.
459
+ */
460
+ LiveSourceName?: __string;
461
+ /**
462
+ * The date and time that the alternateMedia is scheduled to start, in epoch milliseconds.
463
+ */
464
+ ScheduledStartTimeMillis?: __long;
465
+ /**
466
+ * The name of the source location for alternateMedia.
467
+ */
468
+ SourceLocationName?: __string;
469
+ /**
470
+ * The name of the VOD source for alternateMedia.
471
+ */
472
+ VodSourceName?: __string;
473
+ }
474
+ export interface AudienceMedia {
475
+ /**
476
+ * The list of AlternateMedia defined in AudienceMedia.
477
+ */
478
+ AlternateMedia?: __listOfAlternateMedia;
479
+ /**
480
+ * The Audience defined in AudienceMedia.
481
+ */
482
+ Audience?: __string;
483
+ }
484
+ export type Audiences = String[];
447
485
  export interface AvailMatchingCriteria {
448
486
  /**
449
487
  * The dynamic variable(s) that MediaTailor should use as avail matching criteria. MediaTailor only places the prefetched ads into the avail if the avail matches the criteria defined by the dynamic variable. For information about dynamic variables, see Using dynamic ad variables in the MediaTailor User Guide. You can include up to 100 dynamic variables.
@@ -493,6 +531,10 @@ declare namespace MediaTailor {
493
531
  * The ARN of the channel.
494
532
  */
495
533
  Arn: __string;
534
+ /**
535
+ * The list of audiences defined in channel.
536
+ */
537
+ Audiences?: Audiences;
496
538
  /**
497
539
  * The name of the channel.
498
540
  */
@@ -539,7 +581,11 @@ declare namespace MediaTailor {
539
581
  /**
540
582
  * The end offset of the clip range, in milliseconds, starting from the beginning of the VOD source associated with the program.
541
583
  */
542
- EndOffsetMillis: __long;
584
+ EndOffsetMillis?: __long;
585
+ /**
586
+ * The start offset of the clip range, in milliseconds. This offset truncates the start at the number of milliseconds into the duration of the VOD source.
587
+ */
588
+ StartOffsetMillis?: __long;
543
589
  }
544
590
  export type ConfigurationAliasesRequest = {[key: string]: __mapOf__string};
545
591
  export type ConfigurationAliasesResponse = {[key: string]: __mapOf__string};
@@ -584,6 +630,10 @@ declare namespace MediaTailor {
584
630
  PlaybackConfigurationName?: __string;
585
631
  }
586
632
  export interface CreateChannelRequest {
633
+ /**
634
+ * The list of audiences defined in channel.
635
+ */
636
+ Audiences?: Audiences;
587
637
  /**
588
638
  * The name of the channel.
589
639
  */
@@ -618,6 +668,10 @@ declare namespace MediaTailor {
618
668
  * The Amazon Resource Name (ARN) to assign to the channel.
619
669
  */
620
670
  Arn?: __string;
671
+ /**
672
+ * The list of audiences defined in channel.
673
+ */
674
+ Audiences?: Audiences;
621
675
  /**
622
676
  * The name to assign to the channel.
623
677
  */
@@ -760,6 +814,10 @@ declare namespace MediaTailor {
760
814
  * The ad break configuration settings.
761
815
  */
762
816
  AdBreaks?: __listOfAdBreak;
817
+ /**
818
+ * The list of AudienceMedia defined in program.
819
+ */
820
+ AudienceMedia?: __listOfAudienceMedia;
763
821
  /**
764
822
  * The name of the channel for this Program.
765
823
  */
@@ -794,6 +852,10 @@ declare namespace MediaTailor {
794
852
  * The ARN to assign to the program.
795
853
  */
796
854
  Arn?: __string;
855
+ /**
856
+ * The list of AudienceMedia defined in program.
857
+ */
858
+ AudienceMedia?: __listOfAudienceMedia;
797
859
  /**
798
860
  * The name to assign to the channel for this program.
799
861
  */
@@ -1082,6 +1144,10 @@ declare namespace MediaTailor {
1082
1144
  * The ARN of the channel.
1083
1145
  */
1084
1146
  Arn?: __string;
1147
+ /**
1148
+ * The list of audiences defined in channel.
1149
+ */
1150
+ Audiences?: Audiences;
1085
1151
  /**
1086
1152
  * The name of the channel.
1087
1153
  */
@@ -1186,6 +1252,10 @@ declare namespace MediaTailor {
1186
1252
  * The ARN of the program.
1187
1253
  */
1188
1254
  Arn?: __string;
1255
+ /**
1256
+ * The list of AudienceMedia defined in program.
1257
+ */
1258
+ AudienceMedia?: __listOfAudienceMedia;
1189
1259
  /**
1190
1260
  * The name of the channel that the program belongs to.
1191
1261
  */
@@ -1325,6 +1395,10 @@ declare namespace MediaTailor {
1325
1395
  Policy?: __string;
1326
1396
  }
1327
1397
  export interface GetChannelScheduleRequest {
1398
+ /**
1399
+ * The single audience for GetChannelScheduleRequest.
1400
+ */
1401
+ Audience?: __string;
1328
1402
  /**
1329
1403
  * The name of the channel associated with this Channel Schedule.
1330
1404
  */
@@ -2123,6 +2197,10 @@ declare namespace MediaTailor {
2123
2197
  * The ARN of the program.
2124
2198
  */
2125
2199
  Arn: __string;
2200
+ /**
2201
+ * The list of audiences defined in ScheduleEntry.
2202
+ */
2203
+ Audiences?: Audiences;
2126
2204
  /**
2127
2205
  * The name of the channel that uses this schedule.
2128
2206
  */
@@ -2152,7 +2230,7 @@ declare namespace MediaTailor {
2152
2230
  */
2153
2231
  VodSourceName?: __string;
2154
2232
  }
2155
- export type ScheduleEntryType = "PROGRAM"|"FILLER_SLATE"|string;
2233
+ export type ScheduleEntryType = "PROGRAM"|"FILLER_SLATE"|"ALTERNATE_MEDIA"|string;
2156
2234
  export interface SecretsManagerAccessTokenConfiguration {
2157
2235
  /**
2158
2236
  * The name of the HTTP header used to supply the access token in requests to the source location.
@@ -2352,6 +2430,10 @@ declare namespace MediaTailor {
2352
2430
  TagKeys: __listOf__string;
2353
2431
  }
2354
2432
  export interface UpdateChannelRequest {
2433
+ /**
2434
+ * The list of audiences defined in channel.
2435
+ */
2436
+ Audiences?: Audiences;
2355
2437
  /**
2356
2438
  * The name of the channel.
2357
2439
  */
@@ -2374,6 +2456,10 @@ declare namespace MediaTailor {
2374
2456
  * The Amazon Resource Name (ARN) associated with the channel.
2375
2457
  */
2376
2458
  Arn?: __string;
2459
+ /**
2460
+ * The list of audiences defined in channel.
2461
+ */
2462
+ Audiences?: Audiences;
2377
2463
  /**
2378
2464
  * The name of the channel.
2379
2465
  */
@@ -2464,6 +2550,10 @@ declare namespace MediaTailor {
2464
2550
  * The ad break configuration settings.
2465
2551
  */
2466
2552
  AdBreaks?: __listOfAdBreak;
2553
+ /**
2554
+ * The list of AudienceMedia defined in program.
2555
+ */
2556
+ AudienceMedia?: __listOfAudienceMedia;
2467
2557
  /**
2468
2558
  * The name of the channel for this Program.
2469
2559
  */
@@ -2486,6 +2576,10 @@ declare namespace MediaTailor {
2486
2576
  * The ARN to assign to the program.
2487
2577
  */
2488
2578
  Arn?: __string;
2579
+ /**
2580
+ * The list of AudienceMedia defined in program.
2581
+ */
2582
+ AudienceMedia?: __listOfAudienceMedia;
2489
2583
  /**
2490
2584
  * The name to assign to the channel for this program.
2491
2585
  */
@@ -2683,6 +2777,8 @@ declare namespace MediaTailor {
2683
2777
  export type __integerMin1Max100 = number;
2684
2778
  export type __listOfAdBreak = AdBreak[];
2685
2779
  export type __listOfAlert = Alert[];
2780
+ export type __listOfAlternateMedia = AlternateMedia[];
2781
+ export type __listOfAudienceMedia = AudienceMedia[];
2686
2782
  export type __listOfAvailMatchingCriteria = AvailMatchingCriteria[];
2687
2783
  export type __listOfChannel = Channel[];
2688
2784
  export type __listOfLiveSource = LiveSource[];