Update Subscription Target
datazone_update_subscription_target | R Documentation |
Updates the specified subscription target in Amazon DataZone¶
Description¶
Updates the specified subscription target in Amazon DataZone.
Usage¶
datazone_update_subscription_target(applicableAssetTypes,
authorizedPrincipals, domainIdentifier, environmentIdentifier,
identifier, manageAccessRole, name, provider, subscriptionTargetConfig)
Arguments¶
applicableAssetTypes |
The applicable asset types to be updated as part of the
|
authorizedPrincipals |
The authorized principals to be updated as part of the
|
domainIdentifier |
[required] The identifier of the Amazon DataZone domain in which a subscription target is to be updated. |
environmentIdentifier |
[required] The identifier of the environment in which a subscription target is to be updated. |
identifier |
[required] Identifier of the subscription target that is to be updated. |
manageAccessRole |
The manage access role to be updated as part of the
|
name |
The name to be updated as part of the
|
provider |
The provider to be updated as part of the
|
subscriptionTargetConfig |
The configuration to be updated as part of the
|
Value¶
A list with the following syntax:
list(
applicableAssetTypes = list(
"string"
),
authorizedPrincipals = list(
"string"
),
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
domainId = "string",
environmentId = "string",
id = "string",
manageAccessRole = "string",
name = "string",
projectId = "string",
provider = "string",
subscriptionTargetConfig = list(
list(
content = "string",
formName = "string"
)
),
type = "string",
updatedAt = as.POSIXct(
"2015-01-01"
),
updatedBy = "string"
)
Request syntax¶
svc$update_subscription_target(
applicableAssetTypes = list(
"string"
),
authorizedPrincipals = list(
"string"
),
domainIdentifier = "string",
environmentIdentifier = "string",
identifier = "string",
manageAccessRole = "string",
name = "string",
provider = "string",
subscriptionTargetConfig = list(
list(
content = "string",
formName = "string"
)
)
)