1. Packages
  2. AWS Classic
  3. API Docs
  4. iam
  5. ServiceSpecificCredential

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi

aws.iam.ServiceSpecificCredential

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi

    Provides an IAM Service Specific Credential.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.iam.User("example", {name: "example"});
    const exampleServiceSpecificCredential = new aws.iam.ServiceSpecificCredential("example", {
        serviceName: "codecommit.amazonaws.com",
        userName: example.name,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.iam.User("example", name="example")
    example_service_specific_credential = aws.iam.ServiceSpecificCredential("example",
        service_name="codecommit.amazonaws.com",
        user_name=example.name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := iam.NewUser(ctx, "example", &iam.UserArgs{
    			Name: pulumi.String("example"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = iam.NewServiceSpecificCredential(ctx, "example", &iam.ServiceSpecificCredentialArgs{
    			ServiceName: pulumi.String("codecommit.amazonaws.com"),
    			UserName:    example.Name,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Iam.User("example", new()
        {
            Name = "example",
        });
    
        var exampleServiceSpecificCredential = new Aws.Iam.ServiceSpecificCredential("example", new()
        {
            ServiceName = "codecommit.amazonaws.com",
            UserName = example.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.iam.User;
    import com.pulumi.aws.iam.UserArgs;
    import com.pulumi.aws.iam.ServiceSpecificCredential;
    import com.pulumi.aws.iam.ServiceSpecificCredentialArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new User("example", UserArgs.builder()        
                .name("example")
                .build());
    
            var exampleServiceSpecificCredential = new ServiceSpecificCredential("exampleServiceSpecificCredential", ServiceSpecificCredentialArgs.builder()        
                .serviceName("codecommit.amazonaws.com")
                .userName(example.name())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:iam:User
        properties:
          name: example
      exampleServiceSpecificCredential:
        type: aws:iam:ServiceSpecificCredential
        name: example
        properties:
          serviceName: codecommit.amazonaws.com
          userName: ${example.name}
    

    Create ServiceSpecificCredential Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ServiceSpecificCredential(name: string, args: ServiceSpecificCredentialArgs, opts?: CustomResourceOptions);
    @overload
    def ServiceSpecificCredential(resource_name: str,
                                  args: ServiceSpecificCredentialArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServiceSpecificCredential(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  service_name: Optional[str] = None,
                                  user_name: Optional[str] = None,
                                  status: Optional[str] = None)
    func NewServiceSpecificCredential(ctx *Context, name string, args ServiceSpecificCredentialArgs, opts ...ResourceOption) (*ServiceSpecificCredential, error)
    public ServiceSpecificCredential(string name, ServiceSpecificCredentialArgs args, CustomResourceOptions? opts = null)
    public ServiceSpecificCredential(String name, ServiceSpecificCredentialArgs args)
    public ServiceSpecificCredential(String name, ServiceSpecificCredentialArgs args, CustomResourceOptions options)
    
    type: aws:iam:ServiceSpecificCredential
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ServiceSpecificCredentialArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ServiceSpecificCredentialArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ServiceSpecificCredentialArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceSpecificCredentialArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceSpecificCredentialArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var serviceSpecificCredentialResource = new Aws.Iam.ServiceSpecificCredential("serviceSpecificCredentialResource", new()
    {
        ServiceName = "string",
        UserName = "string",
        Status = "string",
    });
    
    example, err := iam.NewServiceSpecificCredential(ctx, "serviceSpecificCredentialResource", &iam.ServiceSpecificCredentialArgs{
    	ServiceName: pulumi.String("string"),
    	UserName:    pulumi.String("string"),
    	Status:      pulumi.String("string"),
    })
    
    var serviceSpecificCredentialResource = new ServiceSpecificCredential("serviceSpecificCredentialResource", ServiceSpecificCredentialArgs.builder()        
        .serviceName("string")
        .userName("string")
        .status("string")
        .build());
    
    service_specific_credential_resource = aws.iam.ServiceSpecificCredential("serviceSpecificCredentialResource",
        service_name="string",
        user_name="string",
        status="string")
    
    const serviceSpecificCredentialResource = new aws.iam.ServiceSpecificCredential("serviceSpecificCredentialResource", {
        serviceName: "string",
        userName: "string",
        status: "string",
    });
    
    type: aws:iam:ServiceSpecificCredential
    properties:
        serviceName: string
        status: string
        userName: string
    

    ServiceSpecificCredential Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ServiceSpecificCredential resource accepts the following input properties:

    ServiceName string
    The name of the AWS 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.
    UserName string
    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.
    Status string
    The status to be assigned to the service-specific credential. Valid values are Active and Inactive. Default value is Active.
    ServiceName string
    The name of the AWS 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.
    UserName string
    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.
    Status string
    The status to be assigned to the service-specific credential. Valid values are Active and Inactive. Default value is Active.
    serviceName String
    The name of the AWS 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.
    userName String
    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.
    status String
    The status to be assigned to the service-specific credential. Valid values are Active and Inactive. Default value is Active.
    serviceName string
    The name of the AWS 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.
    userName string
    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.
    status string
    The status to be assigned to the service-specific credential. Valid values are Active and Inactive. Default value is Active.
    service_name str
    The name of the AWS 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.
    user_name str
    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.
    status str
    The status to be assigned to the service-specific credential. Valid values are Active and Inactive. Default value is Active.
    serviceName String
    The name of the AWS 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.
    userName String
    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.
    status String
    The status to be assigned to the service-specific credential. Valid values are Active and Inactive. Default value is Active.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ServiceSpecificCredential resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    ServicePassword string
    The generated password for the service-specific credential.
    ServiceSpecificCredentialId string
    The unique identifier for the service-specific credential.
    ServiceUserName string
    The generated user name for the service-specific credential. This value is generated by combining the IAM user's name combined with the ID number of the AWS account, as in jane-at-123456789012, for example.
    Id string
    The provider-assigned unique ID for this managed resource.
    ServicePassword string
    The generated password for the service-specific credential.
    ServiceSpecificCredentialId string
    The unique identifier for the service-specific credential.
    ServiceUserName string
    The generated user name for the service-specific credential. This value is generated by combining the IAM user's name combined with the ID number of the AWS account, as in jane-at-123456789012, for example.
    id String
    The provider-assigned unique ID for this managed resource.
    servicePassword String
    The generated password for the service-specific credential.
    serviceSpecificCredentialId String
    The unique identifier for the service-specific credential.
    serviceUserName String
    The generated user name for the service-specific credential. This value is generated by combining the IAM user's name combined with the ID number of the AWS account, as in jane-at-123456789012, for example.
    id string
    The provider-assigned unique ID for this managed resource.
    servicePassword string
    The generated password for the service-specific credential.
    serviceSpecificCredentialId string
    The unique identifier for the service-specific credential.
    serviceUserName string
    The generated user name for the service-specific credential. This value is generated by combining the IAM user's name combined with the ID number of the AWS account, as in jane-at-123456789012, for example.
    id str
    The provider-assigned unique ID for this managed resource.
    service_password str
    The generated password for the service-specific credential.
    service_specific_credential_id str
    The unique identifier for the service-specific credential.
    service_user_name str
    The generated user name for the service-specific credential. This value is generated by combining the IAM user's name combined with the ID number of the AWS account, as in jane-at-123456789012, for example.
    id String
    The provider-assigned unique ID for this managed resource.
    servicePassword String
    The generated password for the service-specific credential.
    serviceSpecificCredentialId String
    The unique identifier for the service-specific credential.
    serviceUserName String
    The generated user name for the service-specific credential. This value is generated by combining the IAM user's name combined with the ID number of the AWS account, as in jane-at-123456789012, for example.

    Look up Existing ServiceSpecificCredential Resource

    Get an existing ServiceSpecificCredential resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ServiceSpecificCredentialState, opts?: CustomResourceOptions): ServiceSpecificCredential
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            service_name: Optional[str] = None,
            service_password: Optional[str] = None,
            service_specific_credential_id: Optional[str] = None,
            service_user_name: Optional[str] = None,
            status: Optional[str] = None,
            user_name: Optional[str] = None) -> ServiceSpecificCredential
    func GetServiceSpecificCredential(ctx *Context, name string, id IDInput, state *ServiceSpecificCredentialState, opts ...ResourceOption) (*ServiceSpecificCredential, error)
    public static ServiceSpecificCredential Get(string name, Input<string> id, ServiceSpecificCredentialState? state, CustomResourceOptions? opts = null)
    public static ServiceSpecificCredential get(String name, Output<String> id, ServiceSpecificCredentialState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ServiceName string
    The name of the AWS 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.
    ServicePassword string
    The generated password for the service-specific credential.
    ServiceSpecificCredentialId string
    The unique identifier for the service-specific credential.
    ServiceUserName string
    The generated user name for the service-specific credential. This value is generated by combining the IAM user's name combined with the ID number of the AWS account, as in jane-at-123456789012, for example.
    Status string
    The status to be assigned to the service-specific credential. Valid values are Active and Inactive. Default value is Active.
    UserName string
    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.
    ServiceName string
    The name of the AWS 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.
    ServicePassword string
    The generated password for the service-specific credential.
    ServiceSpecificCredentialId string
    The unique identifier for the service-specific credential.
    ServiceUserName string
    The generated user name for the service-specific credential. This value is generated by combining the IAM user's name combined with the ID number of the AWS account, as in jane-at-123456789012, for example.
    Status string
    The status to be assigned to the service-specific credential. Valid values are Active and Inactive. Default value is Active.
    UserName string
    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.
    serviceName String
    The name of the AWS 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.
    servicePassword String
    The generated password for the service-specific credential.
    serviceSpecificCredentialId String
    The unique identifier for the service-specific credential.
    serviceUserName String
    The generated user name for the service-specific credential. This value is generated by combining the IAM user's name combined with the ID number of the AWS account, as in jane-at-123456789012, for example.
    status String
    The status to be assigned to the service-specific credential. Valid values are Active and Inactive. Default value is Active.
    userName String
    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.
    serviceName string
    The name of the AWS 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.
    servicePassword string
    The generated password for the service-specific credential.
    serviceSpecificCredentialId string
    The unique identifier for the service-specific credential.
    serviceUserName string
    The generated user name for the service-specific credential. This value is generated by combining the IAM user's name combined with the ID number of the AWS account, as in jane-at-123456789012, for example.
    status string
    The status to be assigned to the service-specific credential. Valid values are Active and Inactive. Default value is Active.
    userName string
    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.
    service_name str
    The name of the AWS 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.
    service_password str
    The generated password for the service-specific credential.
    service_specific_credential_id str
    The unique identifier for the service-specific credential.
    service_user_name str
    The generated user name for the service-specific credential. This value is generated by combining the IAM user's name combined with the ID number of the AWS account, as in jane-at-123456789012, for example.
    status str
    The status to be assigned to the service-specific credential. Valid values are Active and Inactive. Default value is Active.
    user_name str
    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.
    serviceName String
    The name of the AWS 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.
    servicePassword String
    The generated password for the service-specific credential.
    serviceSpecificCredentialId String
    The unique identifier for the service-specific credential.
    serviceUserName String
    The generated user name for the service-specific credential. This value is generated by combining the IAM user's name combined with the ID number of the AWS account, as in jane-at-123456789012, for example.
    status String
    The status to be assigned to the service-specific credential. Valid values are Active and Inactive. Default value is Active.
    userName String
    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.

    Import

    Using pulumi import, import IAM Service Specific Credentials using the service_name:user_name:service_specific_credential_id. For example:

    $ pulumi import aws:iam/serviceSpecificCredential:ServiceSpecificCredential default `codecommit.amazonaws.com:example:some-id`
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi