Show / Hide Table of Contents

Interface ICfnSecurityConfigurationProps

Properties for defining a CfnSecurityConfiguration.

Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnSecurityConfigurationProps
Syntax (vb)
Public Interface ICfnSecurityConfigurationProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-securityconfiguration.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 cfnSecurityConfigurationProps = new CfnSecurityConfigurationProps {
                 EncryptionConfiguration = new EncryptionConfigurationProperty {
                     CloudWatchEncryption = new CloudWatchEncryptionProperty {
                         CloudWatchEncryptionMode = "cloudWatchEncryptionMode",
                         KmsKeyArn = "kmsKeyArn"
                     },
                     JobBookmarksEncryption = new JobBookmarksEncryptionProperty {
                         JobBookmarksEncryptionMode = "jobBookmarksEncryptionMode",
                         KmsKeyArn = "kmsKeyArn"
                     },
                     S3Encryptions = new [] { new S3EncryptionProperty {
                         KmsKeyArn = "kmsKeyArn",
                         S3EncryptionMode = "s3EncryptionMode"
                     } }
                 },
                 Name = "name"
             };

Synopsis

Properties

EncryptionConfiguration

The encryption configuration associated with this security configuration.

Name

The name of the security configuration.

Properties

EncryptionConfiguration

The encryption configuration associated with this security configuration.

object EncryptionConfiguration { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnSecurityConfiguration.IEncryptionConfigurationProperty

Name

The name of the security configuration.

string Name { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX