Class CfnUsageProfileProps
Properties for defining a CfnUsageProfile
.
Inheritance
System.Object
CfnUsageProfileProps
Implements
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUsageProfileProps : Object, ICfnUsageProfileProps
Syntax (vb)
Public Class CfnUsageProfileProps
Inherits Object
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
Configuration | |
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()
public CfnUsageProfileProps()
Properties
Configuration
public object Configuration { get; set; }
Property Value
System.Object
Remarks
Description
A description of the usage profile.
public string Description { get; set; }
Property Value
System.String
Remarks
Name
The name of the usage profile.
public string Name { get; set; }
Property Value
System.String
Remarks
Tags
The tags to be applied to this UsageProfiles.
public ICfnTag[] Tags { get; set; }
Property Value
ICfnTag[]