Reset Notification Settings
iamrolesanywhere_reset_notification_settings | R Documentation |
Resets the custom notification setting to IAM Roles Anywhere default setting¶
Description¶
Resets the custom notification setting to IAM Roles Anywhere default setting.
Required permissions: rolesanywhere:ResetNotificationSettings
.
Usage¶
Arguments¶
notificationSettingKeys
[required] A list of notification setting keys to reset. A notification setting key includes the event and the channel.
trustAnchorId
[required] The unique identifier of the trust anchor.
Value¶
A list with the following syntax:
list(
trustAnchor = list(
createdAt = as.POSIXct(
"2015-01-01"
),
enabled = TRUE|FALSE,
name = "string",
notificationSettings = list(
list(
channel = "ALL",
configuredBy = "string",
enabled = TRUE|FALSE,
event = "CA_CERTIFICATE_EXPIRY"|"END_ENTITY_CERTIFICATE_EXPIRY",
threshold = 123
)
),
source = list(
sourceData = list(
acmPcaArn = "string",
x509CertificateData = "string"
),
sourceType = "AWS_ACM_PCA"|"CERTIFICATE_BUNDLE"|"SELF_SIGNED_REPOSITORY"
),
trustAnchorArn = "string",
trustAnchorId = "string",
updatedAt = as.POSIXct(
"2015-01-01"
)
)
)