Show / Hide Table of Contents

Class SecurityConfiguration

Manages a Glue Security Configuration.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var example = new Aws.Glue.SecurityConfiguration("example", new Aws.Glue.SecurityConfigurationArgs
    {
        EncryptionConfiguration = new Aws.Glue.Inputs.SecurityConfigurationEncryptionConfigurationArgs
        {
            CloudwatchEncryption = new Aws.Glue.Inputs.SecurityConfigurationEncryptionConfigurationCloudwatchEncryptionArgs
            {
                CloudwatchEncryptionMode = "DISABLED",
            },
            JobBookmarksEncryption = new Aws.Glue.Inputs.SecurityConfigurationEncryptionConfigurationJobBookmarksEncryptionArgs
            {
                JobBookmarksEncryptionMode = "DISABLED",
            },
            S3Encryption = new Aws.Glue.Inputs.SecurityConfigurationEncryptionConfigurationS3EncryptionArgs
            {
                KmsKeyArn = data.Aws_kms_key.Example.Arn,
                S3EncryptionMode = "SSE-KMS",
            },
        },
    });
}

}
Inheritance
System.Object
Resource
CustomResource
SecurityConfiguration
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Glue
Assembly: Pulumi.Aws.dll
Syntax
public class SecurityConfiguration : CustomResource

Constructors

View Source

SecurityConfiguration(String, SecurityConfigurationArgs, CustomResourceOptions)

Create a SecurityConfiguration resource with the given unique name, arguments, and options.

Declaration
public SecurityConfiguration(string name, SecurityConfigurationArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

SecurityConfigurationArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

EncryptionConfiguration

Configuration block containing encryption configuration. Detailed below.

Declaration
public Output<SecurityConfigurationEncryptionConfiguration> EncryptionConfiguration { get; }
Property Value
Type Description
Output<SecurityConfigurationEncryptionConfiguration>
View Source

Name

Name of the security configuration.

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, SecurityConfigurationState, CustomResourceOptions)

Get an existing SecurityConfiguration resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static SecurityConfiguration Get(string name, Input<string> id, SecurityConfigurationState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

SecurityConfigurationState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
SecurityConfiguration
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.