Show / Hide Table of Contents

Class CfnUsageProfileProps

Properties for defining a CfnUsageProfile.

Inheritance
object
CfnUsageProfileProps
Implements
ICfnUsageProfileProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUsageProfileProps : ICfnUsageProfileProps
Syntax (vb)
Public Class CfnUsageProfileProps Implements ICfnUsageProfileProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Glue;

             var cfnUsageProfileProps = new CfnUsageProfileProps {
                 Name = "name",

                 // the properties below are optional
                 Configuration = new ProfileConfigurationProperty {
                     JobConfiguration = new Dictionary<string, object> {
                         { "jobConfigurationKey", new ConfigurationObjectProperty {
                             AllowedValues = new [] { "allowedValues" },
                             DefaultValue = "defaultValue",
                             MaxValue = "maxValue",
                             MinValue = "minValue"
                         } }
                     },
                     SessionConfiguration = new Dictionary<string, object> {
                         { "sessionConfigurationKey", new ConfigurationObjectProperty {
                             AllowedValues = new [] { "allowedValues" },
                             DefaultValue = "defaultValue",
                             MaxValue = "maxValue",
                             MinValue = "minValue"
                         } }
                     }
                 },
                 Description = "description",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnUsageProfileProps()

Properties for defining a CfnUsageProfile.

Properties

Configuration

Properties for defining a CfnUsageProfile.

Description

A description of the usage profile.

Name

The name of the usage profile.

Tags

The tags to be applied to this UsageProfiles.

Constructors

CfnUsageProfileProps()

Properties for defining a CfnUsageProfile.

public CfnUsageProfileProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Glue;

             var cfnUsageProfileProps = new CfnUsageProfileProps {
                 Name = "name",

                 // the properties below are optional
                 Configuration = new ProfileConfigurationProperty {
                     JobConfiguration = new Dictionary<string, object> {
                         { "jobConfigurationKey", new ConfigurationObjectProperty {
                             AllowedValues = new [] { "allowedValues" },
                             DefaultValue = "defaultValue",
                             MaxValue = "maxValue",
                             MinValue = "minValue"
                         } }
                     },
                     SessionConfiguration = new Dictionary<string, object> {
                         { "sessionConfigurationKey", new ConfigurationObjectProperty {
                             AllowedValues = new [] { "allowedValues" },
                             DefaultValue = "defaultValue",
                             MaxValue = "maxValue",
                             MinValue = "minValue"
                         } }
                     }
                 },
                 Description = "description",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Configuration

Properties for defining a CfnUsageProfile.

public object? Configuration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html#cfn-glue-usageprofile-configuration

Description

A description of the usage profile.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html#cfn-glue-usageprofile-description

Name

The name of the usage profile.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html#cfn-glue-usageprofile-name

Tags

The tags to be applied to this UsageProfiles.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-usageprofile.html#cfn-glue-usageprofile-tags

Implements

ICfnUsageProfileProps
Back to top Generated by DocFX