interface RequestParameters
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DLM.Events.AWSAPICallViaCloudTrail.RequestParameters |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdlm/events#AWSAPICallViaCloudTrail_RequestParameters |
Java | software.amazon.awscdk.mixins.preview.services.dlm.events.AWSAPICallViaCloudTrail.RequestParameters |
Python | aws_cdk.mixins_preview.aws_dlm.events.AWSAPICallViaCloudTrail.RequestParameters |
TypeScript | @aws-cdk/mixins-preview ยป aws_dlm ยป events ยป AWSAPICallViaCloudTrail ยป RequestParameters |
Type definition for RequestParameters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as dlm_events } from '@aws-cdk/mixins-preview/aws-dlm';
const requestParameters: dlm_events.AWSAPICallViaCloudTrail.RequestParameters = {
description: ['description'],
executionRoleArn: ['executionRoleArn'],
policyDetails: {
policyType: ['policyType'],
resourceTypes: ['resourceTypes'],
schedules: [{
copyTags: ['copyTags'],
createRule: {
interval: ['interval'],
intervalUnit: ['intervalUnit'],
times: ['times'],
},
fastRestoreRule: {
availabilityZones: ['availabilityZones'],
count: ['count'],
},
name: ['name'],
retainRule: {
count: ['count'],
},
tagsToAdd: [{
key: ['key'],
value: ['value'],
}],
}],
targetTags: [{
key: ['key'],
value: ['value'],
}],
},
policyId: ['policyId'],
state: ['state'],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string[] | Description property. |
| execution | string[] | ExecutionRoleArn property. |
| policy | Policy | PolicyDetails property. |
| policy | string[] | policyId property. |
| state? | string[] | State property. |
description?
Type:
string[]
(optional, default: Do not filter on this field)
Description property.
Specify an array of string values to match this event if the actual value of Description is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
executionRoleArn?
Type:
string[]
(optional, default: Do not filter on this field)
ExecutionRoleArn property.
Specify an array of string values to match this event if the actual value of ExecutionRoleArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
policyDetails?
Type:
Policy
(optional, default: Do not filter on this field)
PolicyDetails property.
Specify an array of string values to match this event if the actual value of PolicyDetails is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
policyId?
Type:
string[]
(optional, default: Do not filter on this field)
policyId property.
Specify an array of string values to match this event if the actual value of policyId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
state?
Type:
string[]
(optional, default: Do not filter on this field)
State property.
Specify an array of string values to match this event if the actual value of State is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript