Skip to content

Commit

Permalink
feat(client-ec2): Making InstanceTagAttribute as the required paramet…
Browse files Browse the repository at this point in the history
…er for the DeregisterInstanceEventNotificationAttributes and RegisterInstanceEventNotificationAttributes APIs.
  • Loading branch information
awstools committed Jun 5, 2023
1 parent 7df6c6b commit 8329d54
Show file tree
Hide file tree
Showing 3 changed files with 1,533 additions and 42 deletions.
2 changes: 1 addition & 1 deletion clients/client-ec2/src/models/models_3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1152,7 +1152,7 @@ export interface DeregisterInstanceEventNotificationAttributesRequest {
/**
* <p>Information about the tag keys to deregister.</p>
*/
InstanceTagAttribute?: DeregisterInstanceTagAttributeRequest;
InstanceTagAttribute: DeregisterInstanceTagAttributeRequest | undefined;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion clients/client-ec2/src/models/models_6.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5531,7 +5531,7 @@ export interface RegisterInstanceEventNotificationAttributesRequest {
/**
* <p>Information about the tag keys to register.</p>
*/
InstanceTagAttribute?: RegisterInstanceTagAttributeRequest;
InstanceTagAttribute: RegisterInstanceTagAttributeRequest | undefined;
}

/**
Expand Down
Loading

0 comments on commit 8329d54

Please sign in to comment.