1. Packages
  2. AWS Native
  3. API Docs
  4. iot
  5. Dimension

AWS Native is in preview. AWS Classic is fully supported.

AWS Native v0.102.0 published on Tuesday, Apr 16, 2024 by Pulumi

aws-native.iot.Dimension

Explore with Pulumi AI

aws-native logo

AWS Native is in preview. AWS Classic is fully supported.

AWS Native v0.102.0 published on Tuesday, Apr 16, 2024 by Pulumi

    A dimension can be used to limit the scope of a metric used in a security profile for AWS IoT Device Defender.

    Example Usage

    Example

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AwsNative = Pulumi.AwsNative;
    
    return await Deployment.RunAsync(() => 
    {
        var topicFilterForAuthMessagesDimension = new AwsNative.IoT.Dimension("topicFilterForAuthMessagesDimension", new()
        {
            Name = "TopicFilterForAuthMessages",
            Type = AwsNative.IoT.DimensionType.TopicFilter,
            StringValues = new[]
            {
                "device/+/auth",
            },
            Tags = new[]
            {
                new AwsNative.Inputs.TagArgs
                {
                    Key = "Application",
                    Value = "SmartHome",
                },
            },
        });
    
    });
    
    package main
    
    import (
    	awsnative "github.com/pulumi/pulumi-aws-native/sdk/go/aws"
    	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/iot"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := iot.NewDimension(ctx, "topicFilterForAuthMessagesDimension", &iot.DimensionArgs{
    			Name: pulumi.String("TopicFilterForAuthMessages"),
    			Type: iot.DimensionTypeTopicFilter,
    			StringValues: pulumi.StringArray{
    				pulumi.String("device/+/auth"),
    			},
    			Tags: aws.TagArray{
    				&aws.TagArgs{
    					Key:   pulumi.String("Application"),
    					Value: pulumi.String("SmartHome"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Coming soon!

    import pulumi
    import pulumi_aws_native as aws_native
    
    topic_filter_for_auth_messages_dimension = aws_native.iot.Dimension("topicFilterForAuthMessagesDimension",
        name="TopicFilterForAuthMessages",
        type=aws_native.iot.DimensionType.TOPIC_FILTER,
        string_values=["device/+/auth"],
        tags=[aws_native.TagArgs(
            key="Application",
            value="SmartHome",
        )])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws_native from "@pulumi/aws-native";
    
    const topicFilterForAuthMessagesDimension = new aws_native.iot.Dimension("topicFilterForAuthMessagesDimension", {
        name: "TopicFilterForAuthMessages",
        type: aws_native.iot.DimensionType.TopicFilter,
        stringValues: ["device/+/auth"],
        tags: [{
            key: "Application",
            value: "SmartHome",
        }],
    });
    

    Coming soon!

    Create Dimension Resource

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

    Constructor syntax

    new Dimension(name: string, args: DimensionArgs, opts?: CustomResourceOptions);
    @overload
    def Dimension(resource_name: str,
                  args: DimensionArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Dimension(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  string_values: Optional[Sequence[str]] = None,
                  type: Optional[DimensionType] = None,
                  name: Optional[str] = None,
                  tags: Optional[Sequence[_root_inputs.TagArgs]] = None)
    func NewDimension(ctx *Context, name string, args DimensionArgs, opts ...ResourceOption) (*Dimension, error)
    public Dimension(string name, DimensionArgs args, CustomResourceOptions? opts = null)
    public Dimension(String name, DimensionArgs args)
    public Dimension(String name, DimensionArgs args, CustomResourceOptions options)
    
    type: aws-native:iot:Dimension
    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 DimensionArgs
    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 DimensionArgs
    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 DimensionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DimensionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DimensionArgs
    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.

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    const dimensionResource = new aws_native.iot.Dimension("dimensionResource", {
        stringValues: ["string"],
        type: aws_native.iot.DimensionType.TopicFilter,
        name: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    Coming soon!
    

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

    StringValues List<string>
    Specifies the value or list of values for the dimension.
    Type Pulumi.AwsNative.IoT.DimensionType
    Specifies the type of the dimension.
    Name string
    A unique identifier for the dimension.
    Tags List<Pulumi.AwsNative.Inputs.Tag>
    Metadata that can be used to manage the dimension.
    StringValues []string
    Specifies the value or list of values for the dimension.
    Type DimensionType
    Specifies the type of the dimension.
    Name string
    A unique identifier for the dimension.
    Tags TagArgs
    Metadata that can be used to manage the dimension.
    stringValues List<String>
    Specifies the value or list of values for the dimension.
    type DimensionType
    Specifies the type of the dimension.
    name String
    A unique identifier for the dimension.
    tags List<Tag>
    Metadata that can be used to manage the dimension.
    stringValues string[]
    Specifies the value or list of values for the dimension.
    type DimensionType
    Specifies the type of the dimension.
    name string
    A unique identifier for the dimension.
    tags Tag[]
    Metadata that can be used to manage the dimension.
    string_values Sequence[str]
    Specifies the value or list of values for the dimension.
    type DimensionType
    Specifies the type of the dimension.
    name str
    A unique identifier for the dimension.
    tags Sequence[TagArgs]
    Metadata that can be used to manage the dimension.
    stringValues List<String>
    Specifies the value or list of values for the dimension.
    type "TOPIC_FILTER"
    Specifies the type of the dimension.
    name String
    A unique identifier for the dimension.
    tags List<Property Map>
    Metadata that can be used to manage the dimension.

    Outputs

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

    Arn string
    The ARN (Amazon resource name) of the created dimension.
    Id string
    The provider-assigned unique ID for this managed resource.
    Arn string
    The ARN (Amazon resource name) of the created dimension.
    Id string
    The provider-assigned unique ID for this managed resource.
    arn String
    The ARN (Amazon resource name) of the created dimension.
    id String
    The provider-assigned unique ID for this managed resource.
    arn string
    The ARN (Amazon resource name) of the created dimension.
    id string
    The provider-assigned unique ID for this managed resource.
    arn str
    The ARN (Amazon resource name) of the created dimension.
    id str
    The provider-assigned unique ID for this managed resource.
    arn String
    The ARN (Amazon resource name) of the created dimension.
    id String
    The provider-assigned unique ID for this managed resource.

    Supporting Types

    DimensionType, DimensionTypeArgs

    TopicFilter
    TOPIC_FILTER
    DimensionTypeTopicFilter
    TOPIC_FILTER
    TopicFilter
    TOPIC_FILTER
    TopicFilter
    TOPIC_FILTER
    TOPIC_FILTER
    TOPIC_FILTER
    "TOPIC_FILTER"
    TOPIC_FILTER

    Tag, TagArgs

    Key string
    The key name of the tag
    Value string
    The value of the tag
    Key string
    The key name of the tag
    Value string
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag
    key string
    The key name of the tag
    value string
    The value of the tag
    key str
    The key name of the tag
    value str
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag

    Package Details

    Repository
    AWS Native pulumi/pulumi-aws-native
    License
    Apache-2.0
    aws-native logo

    AWS Native is in preview. AWS Classic is fully supported.

    AWS Native v0.102.0 published on Tuesday, Apr 16, 2024 by Pulumi