Associate User
| licensemanagerusersubscriptions_associate_user | R Documentation |
Associates the user to an EC2 instance to utilize user-based subscriptions¶
Description¶
Associates the user to an EC2 instance to utilize user-based subscriptions.
Your estimated bill for charges on the number of users and related costs will take 48 hours to appear for billing periods that haven't closed (marked as Pending billing status) in Amazon Web Services Billing. For more information, see Viewing your monthly charges in the Amazon Web Services Billing User Guide.
Usage¶
licensemanagerusersubscriptions_associate_user(Username, InstanceId,
IdentityProvider, Domain, Tags)
Arguments¶
Username |
[required] The user name from the identity provider. |
InstanceId |
[required] The ID of the EC2 instance that provides the user-based subscription. |
IdentityProvider |
[required] The identity provider for the user. |
Domain |
The domain name of the Active Directory that contains information for the user to associate. |
Tags |
The tags that apply for the user association. |
Value¶
A list with the following syntax:
list(
InstanceUserSummary = list(
Username = "string",
InstanceId = "string",
IdentityProvider = list(
ActiveDirectoryIdentityProvider = list(
DirectoryId = "string",
ActiveDirectorySettings = list(
DomainName = "string",
DomainIpv4List = list(
"string"
),
DomainIpv6List = list(
"string"
),
DomainCredentialsProvider = list(
SecretsManagerCredentialsProvider = list(
SecretId = "string"
)
),
DomainNetworkSettings = list(
Subnets = list(
"string"
)
)
),
ActiveDirectoryType = "SELF_MANAGED"|"AWS_MANAGED",
IsSharedActiveDirectory = TRUE|FALSE
)
),
Status = "string",
InstanceUserArn = "string",
StatusMessage = "string",
Domain = "string",
AssociationDate = "string",
DisassociationDate = "string"
)
)
Request syntax¶
svc$associate_user(
Username = "string",
InstanceId = "string",
IdentityProvider = list(
ActiveDirectoryIdentityProvider = list(
DirectoryId = "string",
ActiveDirectorySettings = list(
DomainName = "string",
DomainIpv4List = list(
"string"
),
DomainIpv6List = list(
"string"
),
DomainCredentialsProvider = list(
SecretsManagerCredentialsProvider = list(
SecretId = "string"
)
),
DomainNetworkSettings = list(
Subnets = list(
"string"
)
)
),
ActiveDirectoryType = "SELF_MANAGED"|"AWS_MANAGED",
IsSharedActiveDirectory = TRUE|FALSE
)
),
Domain = "string",
Tags = list(
"string"
)
)