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.

Creates a resource group using the specified set of tags (key and value pairs) that are used to select the EC2 instances to be included in an Amazon Inspector assessment target. The created resource group is then used to create an Amazon Inspector assessment target. For more information, see CreateAssessmentTarget.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to CreateResourceGroupAsync.

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

Syntax

C#
public virtual CreateResourceGroupResponse CreateResourceGroup(
         CreateResourceGroupRequest request
)

Parameters

request
Type: Amazon.Inspector.Model.CreateResourceGroupRequest

Container for the necessary parameters to execute the CreateResourceGroup service method.

Return Value


The response from the CreateResourceGroup service method, as returned by Inspector.

Exceptions

ExceptionCondition
AccessDeniedException You do not have required permissions to access the requested resource.
InternalException Internal server error.
InvalidInputException The request was rejected because an invalid or out-of-range value was supplied for an input parameter.
LimitExceededException The request was rejected because it attempted to create resources beyond the current AWS account limits. The error code describes the limit exceeded.
ServiceTemporarilyUnavailableException The serice is temporary unavailable.

Examples

Creates a resource group using the specified set of tags (key and value pairs) that are used to select the EC2 instances to be included in an Amazon Inspector assessment target. The created resource group is then used to create an Amazon Inspector assessment target.

Create resource group


var client = new AmazonInspectorClient();
var response = client.CreateResourceGroup(new CreateResourceGroupRequest 
{
    ResourceGroupTags = new List<ResourceGroupTag> {
        new ResourceGroupTag {
            Key = "Name",
            Value = "example"
        }
    }
});

string resourceGroupArn = response.ResourceGroupArn;

            

Version Information

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

See Also