Skip to content

Create Service Specific Credential

iam_create_service_specific_credential R Documentation

Generates a set of credentials consisting of a user name and password that can be used to access the service specified in the request

Description

Generates a set of credentials consisting of a user name and password that can be used to access the service specified in the request. These credentials are generated by IAM, and can be used only for the specified service.

You can have a maximum of two sets of service-specific credentials for each supported service per user.

You can create service-specific credentials for CodeCommit and Amazon Keyspaces (for Apache Cassandra).

You can reset the password to a new service-generated value by calling reset_service_specific_credential.

For more information about service-specific credentials, see Using IAM with CodeCommit: Git credentials, SSH keys, and Amazon Web Services access keys in the IAM User Guide.

Usage

iam_create_service_specific_credential(UserName, ServiceName)

Arguments

UserName

[required] The name of the IAM user that is to be associated with the credentials. The new service-specific credentials have the same permissions as the associated user except that they can be used only to access the specified service.

This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

ServiceName

[required] The name of the Amazon Web Services service that is to be associated with the credentials. The service you specify here is the only service that can be accessed using these credentials.

Value

A list with the following syntax:

list(
  ServiceSpecificCredential = list(
    CreateDate = as.POSIXct(
      "2015-01-01"
    ),
    ServiceName = "string",
    ServiceUserName = "string",
    ServicePassword = "string",
    ServiceSpecificCredentialId = "string",
    UserName = "string",
    Status = "Active"|"Inactive"
  )
)

Request syntax

svc$create_service_specific_credential(
  UserName = "string",
  ServiceName = "string"
)