AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the SetTagsForResource operation. Sets tags (key and value pairs) to the assessment template that is specified by the ARN of the assessment template.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Inspector.AmazonInspectorRequest
      Amazon.Inspector.Model.SetTagsForResourceRequest

Namespace: Amazon.Inspector.Model
Assembly: AWSSDK.Inspector.dll
Version: 3.x.y.z

Syntax

C#
public class SetTagsForResourceRequest : AmazonInspectorRequest
         IAmazonWebServiceRequest

The SetTagsForResourceRequest type exposes the following members

Constructors

NameDescription
Public Method SetTagsForResourceRequest()

Properties

NameTypeDescription
Public Property ResourceArn System.String

Gets and sets the property ResourceArn.

The ARN of the assessment template that you want to set tags to.

Public Property Tags System.Collections.Generic.List<Amazon.Inspector.Model.Tag>

Gets and sets the property Tags.

A collection of key and value pairs that you want to set to the assessment template.

Examples

Sets tags (key and value pairs) to the assessment template that is specified by the ARN of the assessment template.

Set tags for resource


var client = new AmazonInspectorClient();
var response = client.SetTagsForResource(new SetTagsForResourceRequest 
{
    ResourceArn = "arn:aws:inspector:us-west-2:123456789012:target/0-nvgVhaxX/template/0-7sbz2Kz0",
    Tags = new List<Tag> {
        new Tag {
            Key = "Example",
            Value = "example"
        }
    }
});


            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5