Show / Hide Table of Contents

Class CfnMembership.ProtectedQueryS3OutputConfigurationProperty

Contains the configuration to write the query results to S3.

Inheritance
object
CfnMembership.ProtectedQueryS3OutputConfigurationProperty
Implements
CfnMembership.IProtectedQueryS3OutputConfigurationProperty
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.CleanRooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMembership.ProtectedQueryS3OutputConfigurationProperty : CfnMembership.IProtectedQueryS3OutputConfigurationProperty
Syntax (vb)
Public Class CfnMembership.ProtectedQueryS3OutputConfigurationProperty Implements CfnMembership.IProtectedQueryS3OutputConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.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.CleanRooms;

             var protectedQueryS3OutputConfigurationProperty = new ProtectedQueryS3OutputConfigurationProperty {
                 Bucket = "bucket",
                 ResultFormat = "resultFormat",

                 // the properties below are optional
                 KeyPrefix = "keyPrefix",
                 SingleFileOutput = false
             };

Synopsis

Constructors

ProtectedQueryS3OutputConfigurationProperty()

Contains the configuration to write the query results to S3.

Properties

Bucket

The S3 bucket to unload the protected query results.

KeyPrefix

The S3 prefix to unload the protected query results.

ResultFormat

Intended file format of the result.

SingleFileOutput

Indicates whether files should be output as a single file ( TRUE ) or output as multiple files ( FALSE ).

Constructors

ProtectedQueryS3OutputConfigurationProperty()

Contains the configuration to write the query results to S3.

public ProtectedQueryS3OutputConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.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.CleanRooms;

             var protectedQueryS3OutputConfigurationProperty = new ProtectedQueryS3OutputConfigurationProperty {
                 Bucket = "bucket",
                 ResultFormat = "resultFormat",

                 // the properties below are optional
                 KeyPrefix = "keyPrefix",
                 SingleFileOutput = false
             };

Properties

Bucket

The S3 bucket to unload the protected query results.

public string Bucket { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html#cfn-cleanrooms-membership-protectedquerys3outputconfiguration-bucket

KeyPrefix

The S3 prefix to unload the protected query results.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html#cfn-cleanrooms-membership-protectedquerys3outputconfiguration-keyprefix

ResultFormat

Intended file format of the result.

public string ResultFormat { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html#cfn-cleanrooms-membership-protectedquerys3outputconfiguration-resultformat

SingleFileOutput

Indicates whether files should be output as a single file ( TRUE ) or output as multiple files ( FALSE ).

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

object

Remarks

This parameter is only supported for analyses with the Spark analytics engine.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-protectedquerys3outputconfiguration.html#cfn-cleanrooms-membership-protectedquerys3outputconfiguration-singlefileoutput

Type union: either bool or IResolvable

Implements

CfnMembership.IProtectedQueryS3OutputConfigurationProperty
Back to top Generated by DocFX