1. Packages
  2. AWS Classic
  3. API Docs
  4. auditmanager
  5. AssessmentDelegation

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

AWS Classic v6.2.1 published on Friday, Sep 22, 2023 by Pulumi

aws.auditmanager.AssessmentDelegation

Explore with Pulumi AI

aws logo

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

AWS Classic v6.2.1 published on Friday, Sep 22, 2023 by Pulumi

    Resource for managing an AWS Audit Manager Assessment Delegation.

    Example Usage

    Basic Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.Auditmanager.AssessmentDelegation("example", new()
        {
            AssessmentId = aws_auditmanager_assessment.Example.Id,
            RoleArn = aws_iam_role.Example.Arn,
            RoleType = "RESOURCE_OWNER",
            ControlSetId = "example",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/auditmanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := auditmanager.NewAssessmentDelegation(ctx, "example", &auditmanager.AssessmentDelegationArgs{
    			AssessmentId: pulumi.Any(aws_auditmanager_assessment.Example.Id),
    			RoleArn:      pulumi.Any(aws_iam_role.Example.Arn),
    			RoleType:     pulumi.String("RESOURCE_OWNER"),
    			ControlSetId: pulumi.String("example"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.auditmanager.AssessmentDelegation;
    import com.pulumi.aws.auditmanager.AssessmentDelegationArgs;
    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 AssessmentDelegation("example", AssessmentDelegationArgs.builder()        
                .assessmentId(aws_auditmanager_assessment.example().id())
                .roleArn(aws_iam_role.example().arn())
                .roleType("RESOURCE_OWNER")
                .controlSetId("example")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.auditmanager.AssessmentDelegation("example",
        assessment_id=aws_auditmanager_assessment["example"]["id"],
        role_arn=aws_iam_role["example"]["arn"],
        role_type="RESOURCE_OWNER",
        control_set_id="example")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.auditmanager.AssessmentDelegation("example", {
        assessmentId: aws_auditmanager_assessment.example.id,
        roleArn: aws_iam_role.example.arn,
        roleType: "RESOURCE_OWNER",
        controlSetId: "example",
    });
    
    resources:
      example:
        type: aws:auditmanager:AssessmentDelegation
        properties:
          assessmentId: ${aws_auditmanager_assessment.example.id}
          roleArn: ${aws_iam_role.example.arn}
          roleType: RESOURCE_OWNER
          controlSetId: example
    

    Create AssessmentDelegation Resource

    new AssessmentDelegation(name: string, args: AssessmentDelegationArgs, opts?: CustomResourceOptions);
    @overload
    def AssessmentDelegation(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             assessment_id: Optional[str] = None,
                             comment: Optional[str] = None,
                             control_set_id: Optional[str] = None,
                             role_arn: Optional[str] = None,
                             role_type: Optional[str] = None)
    @overload
    def AssessmentDelegation(resource_name: str,
                             args: AssessmentDelegationArgs,
                             opts: Optional[ResourceOptions] = None)
    func NewAssessmentDelegation(ctx *Context, name string, args AssessmentDelegationArgs, opts ...ResourceOption) (*AssessmentDelegation, error)
    public AssessmentDelegation(string name, AssessmentDelegationArgs args, CustomResourceOptions? opts = null)
    public AssessmentDelegation(String name, AssessmentDelegationArgs args)
    public AssessmentDelegation(String name, AssessmentDelegationArgs args, CustomResourceOptions options)
    
    type: aws:auditmanager:AssessmentDelegation
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AssessmentDelegationArgs
    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 AssessmentDelegationArgs
    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 AssessmentDelegationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AssessmentDelegationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AssessmentDelegationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    AssessmentDelegation 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 AssessmentDelegation resource accepts the following input properties:

    AssessmentId string

    Identifier for the assessment.

    ControlSetId string

    Assessment control set name. This value is the control set name used during assessment creation (not the AWS-generated ID). The _id suffix on this attribute has been preserved to be consistent with the underlying AWS API.

    RoleArn string

    Amazon Resource Name (ARN) of the IAM role.

    RoleType string

    Type of customer persona. For assessment delegation, type must always be RESOURCE_OWNER.

    The following arguments are optional:

    Comment string

    Comment describing the delegation request.

    AssessmentId string

    Identifier for the assessment.

    ControlSetId string

    Assessment control set name. This value is the control set name used during assessment creation (not the AWS-generated ID). The _id suffix on this attribute has been preserved to be consistent with the underlying AWS API.

    RoleArn string

    Amazon Resource Name (ARN) of the IAM role.

    RoleType string

    Type of customer persona. For assessment delegation, type must always be RESOURCE_OWNER.

    The following arguments are optional:

    Comment string

    Comment describing the delegation request.

    assessmentId String

    Identifier for the assessment.

    controlSetId String

    Assessment control set name. This value is the control set name used during assessment creation (not the AWS-generated ID). The _id suffix on this attribute has been preserved to be consistent with the underlying AWS API.

    roleArn String

    Amazon Resource Name (ARN) of the IAM role.

    roleType String

    Type of customer persona. For assessment delegation, type must always be RESOURCE_OWNER.

    The following arguments are optional:

    comment String

    Comment describing the delegation request.

    assessmentId string

    Identifier for the assessment.

    controlSetId string

    Assessment control set name. This value is the control set name used during assessment creation (not the AWS-generated ID). The _id suffix on this attribute has been preserved to be consistent with the underlying AWS API.

    roleArn string

    Amazon Resource Name (ARN) of the IAM role.

    roleType string

    Type of customer persona. For assessment delegation, type must always be RESOURCE_OWNER.

    The following arguments are optional:

    comment string

    Comment describing the delegation request.

    assessment_id str

    Identifier for the assessment.

    control_set_id str

    Assessment control set name. This value is the control set name used during assessment creation (not the AWS-generated ID). The _id suffix on this attribute has been preserved to be consistent with the underlying AWS API.

    role_arn str

    Amazon Resource Name (ARN) of the IAM role.

    role_type str

    Type of customer persona. For assessment delegation, type must always be RESOURCE_OWNER.

    The following arguments are optional:

    comment str

    Comment describing the delegation request.

    assessmentId String

    Identifier for the assessment.

    controlSetId String

    Assessment control set name. This value is the control set name used during assessment creation (not the AWS-generated ID). The _id suffix on this attribute has been preserved to be consistent with the underlying AWS API.

    roleArn String

    Amazon Resource Name (ARN) of the IAM role.

    roleType String

    Type of customer persona. For assessment delegation, type must always be RESOURCE_OWNER.

    The following arguments are optional:

    comment String

    Comment describing the delegation request.

    Outputs

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

    DelegationId string

    Unique identifier for the delegation.

    Id string

    The provider-assigned unique ID for this managed resource.

    Status string

    Status of the delegation.

    DelegationId string

    Unique identifier for the delegation.

    Id string

    The provider-assigned unique ID for this managed resource.

    Status string

    Status of the delegation.

    delegationId String

    Unique identifier for the delegation.

    id String

    The provider-assigned unique ID for this managed resource.

    status String

    Status of the delegation.

    delegationId string

    Unique identifier for the delegation.

    id string

    The provider-assigned unique ID for this managed resource.

    status string

    Status of the delegation.

    delegation_id str

    Unique identifier for the delegation.

    id str

    The provider-assigned unique ID for this managed resource.

    status str

    Status of the delegation.

    delegationId String

    Unique identifier for the delegation.

    id String

    The provider-assigned unique ID for this managed resource.

    status String

    Status of the delegation.

    Look up Existing AssessmentDelegation Resource

    Get an existing AssessmentDelegation 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?: AssessmentDelegationState, opts?: CustomResourceOptions): AssessmentDelegation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            assessment_id: Optional[str] = None,
            comment: Optional[str] = None,
            control_set_id: Optional[str] = None,
            delegation_id: Optional[str] = None,
            role_arn: Optional[str] = None,
            role_type: Optional[str] = None,
            status: Optional[str] = None) -> AssessmentDelegation
    func GetAssessmentDelegation(ctx *Context, name string, id IDInput, state *AssessmentDelegationState, opts ...ResourceOption) (*AssessmentDelegation, error)
    public static AssessmentDelegation Get(string name, Input<string> id, AssessmentDelegationState? state, CustomResourceOptions? opts = null)
    public static AssessmentDelegation get(String name, Output<String> id, AssessmentDelegationState 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:
    AssessmentId string

    Identifier for the assessment.

    Comment string

    Comment describing the delegation request.

    ControlSetId string

    Assessment control set name. This value is the control set name used during assessment creation (not the AWS-generated ID). The _id suffix on this attribute has been preserved to be consistent with the underlying AWS API.

    DelegationId string

    Unique identifier for the delegation.

    RoleArn string

    Amazon Resource Name (ARN) of the IAM role.

    RoleType string

    Type of customer persona. For assessment delegation, type must always be RESOURCE_OWNER.

    The following arguments are optional:

    Status string

    Status of the delegation.

    AssessmentId string

    Identifier for the assessment.

    Comment string

    Comment describing the delegation request.

    ControlSetId string

    Assessment control set name. This value is the control set name used during assessment creation (not the AWS-generated ID). The _id suffix on this attribute has been preserved to be consistent with the underlying AWS API.

    DelegationId string

    Unique identifier for the delegation.

    RoleArn string

    Amazon Resource Name (ARN) of the IAM role.

    RoleType string

    Type of customer persona. For assessment delegation, type must always be RESOURCE_OWNER.

    The following arguments are optional:

    Status string

    Status of the delegation.

    assessmentId String

    Identifier for the assessment.

    comment String

    Comment describing the delegation request.

    controlSetId String

    Assessment control set name. This value is the control set name used during assessment creation (not the AWS-generated ID). The _id suffix on this attribute has been preserved to be consistent with the underlying AWS API.

    delegationId String

    Unique identifier for the delegation.

    roleArn String

    Amazon Resource Name (ARN) of the IAM role.

    roleType String

    Type of customer persona. For assessment delegation, type must always be RESOURCE_OWNER.

    The following arguments are optional:

    status String

    Status of the delegation.

    assessmentId string

    Identifier for the assessment.

    comment string

    Comment describing the delegation request.

    controlSetId string

    Assessment control set name. This value is the control set name used during assessment creation (not the AWS-generated ID). The _id suffix on this attribute has been preserved to be consistent with the underlying AWS API.

    delegationId string

    Unique identifier for the delegation.

    roleArn string

    Amazon Resource Name (ARN) of the IAM role.

    roleType string

    Type of customer persona. For assessment delegation, type must always be RESOURCE_OWNER.

    The following arguments are optional:

    status string

    Status of the delegation.

    assessment_id str

    Identifier for the assessment.

    comment str

    Comment describing the delegation request.

    control_set_id str

    Assessment control set name. This value is the control set name used during assessment creation (not the AWS-generated ID). The _id suffix on this attribute has been preserved to be consistent with the underlying AWS API.

    delegation_id str

    Unique identifier for the delegation.

    role_arn str

    Amazon Resource Name (ARN) of the IAM role.

    role_type str

    Type of customer persona. For assessment delegation, type must always be RESOURCE_OWNER.

    The following arguments are optional:

    status str

    Status of the delegation.

    assessmentId String

    Identifier for the assessment.

    comment String

    Comment describing the delegation request.

    controlSetId String

    Assessment control set name. This value is the control set name used during assessment creation (not the AWS-generated ID). The _id suffix on this attribute has been preserved to be consistent with the underlying AWS API.

    delegationId String

    Unique identifier for the delegation.

    roleArn String

    Amazon Resource Name (ARN) of the IAM role.

    roleType String

    Type of customer persona. For assessment delegation, type must always be RESOURCE_OWNER.

    The following arguments are optional:

    status String

    Status of the delegation.

    Import

    Using pulumi import, import Audit Manager Assessment Delegation using the id. For example:

     $ pulumi import aws:auditmanager/assessmentDelegation:AssessmentDelegation example abcdef-123456,arn:aws:iam::012345678901:role/example,example
    

    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.2.1 published on Friday, Sep 22, 2023 by Pulumi