Refer to the Terraform Registory for docs: aws_s3_object_copy
.
Represents a {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy aws_s3_object_copy}.
import { s3ObjectCopy } from '@cdktf/aws-cdk'
new s3ObjectCopy.S3ObjectCopy(scope: Construct, id: string, config: S3ObjectCopyConfig)
Name | Type | Description |
---|---|---|
scope |
constructs.Construct |
The scope in which to define this construct. |
id |
string |
The scoped construct ID. |
config |
S3ObjectCopyConfig |
No description. |
- Type: constructs.Construct
The scope in which to define this construct.
- Type: string
The scoped construct ID.
Must be unique amongst siblings in the same scope
- Type: S3ObjectCopyConfig
Name | Description |
---|---|
toString |
Returns a string representation of this construct. |
addOverride |
No description. |
overrideLogicalId |
Overrides the auto-generated logical ID with a specific ID. |
resetOverrideLogicalId |
Resets a previously passed logical Id to use the auto-generated logical id again. |
toMetadata |
No description. |
toTerraform |
Adds this resource to the terraform JSON output. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
putGrant |
No description. |
resetAcl |
No description. |
resetBucketKeyEnabled |
No description. |
resetCacheControl |
No description. |
resetContentDisposition |
No description. |
resetContentEncoding |
No description. |
resetContentLanguage |
No description. |
resetContentType |
No description. |
resetCopyIfMatch |
No description. |
resetCopyIfModifiedSince |
No description. |
resetCopyIfNoneMatch |
No description. |
resetCopyIfUnmodifiedSince |
No description. |
resetCustomerAlgorithm |
No description. |
resetCustomerKey |
No description. |
resetCustomerKeyMd5 |
No description. |
resetExpectedBucketOwner |
No description. |
resetExpectedSourceBucketOwner |
No description. |
resetExpires |
No description. |
resetForceDestroy |
No description. |
resetGrant |
No description. |
resetId |
No description. |
resetKmsEncryptionContext |
No description. |
resetKmsKeyId |
No description. |
resetMetadata |
No description. |
resetMetadataDirective |
No description. |
resetObjectLockLegalHoldStatus |
No description. |
resetObjectLockMode |
No description. |
resetObjectLockRetainUntilDate |
No description. |
resetRequestPayer |
No description. |
resetServerSideEncryption |
No description. |
resetSourceCustomerAlgorithm |
No description. |
resetSourceCustomerKey |
No description. |
resetSourceCustomerKeyMd5 |
No description. |
resetStorageClass |
No description. |
resetTaggingDirective |
No description. |
resetTags |
No description. |
resetTagsAll |
No description. |
resetWebsiteRedirect |
No description. |
public toString(): string
Returns a string representation of this construct.
public addOverride(path: string, value: any): void
- Type: string
- Type: any
public overrideLogicalId(newLogicalId: string): void
Overrides the auto-generated logical ID with a specific ID.
- Type: string
The new logical ID to use for this stack element.
public resetOverrideLogicalId(): void
Resets a previously passed logical Id to use the auto-generated logical id again.
public toMetadata(): any
public toTerraform(): any
Adds this resource to the terraform JSON output.
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(terraformAttribute: string): IResolvable
- Type: string
public putGrant(value: IResolvable | S3ObjectCopyGrant[]): void
- Type: cdktf.IResolvable | S3ObjectCopyGrant[]
public resetAcl(): void
public resetBucketKeyEnabled(): void
public resetCacheControl(): void
public resetContentDisposition(): void
public resetContentEncoding(): void
public resetContentLanguage(): void
public resetContentType(): void
public resetCopyIfMatch(): void
public resetCopyIfModifiedSince(): void
public resetCopyIfNoneMatch(): void
public resetCopyIfUnmodifiedSince(): void
public resetCustomerAlgorithm(): void
public resetCustomerKey(): void
public resetCustomerKeyMd5(): void
public resetExpectedBucketOwner(): void
public resetExpectedSourceBucketOwner(): void
public resetExpires(): void
public resetForceDestroy(): void
public resetGrant(): void
public resetId(): void
public resetKmsEncryptionContext(): void
public resetKmsKeyId(): void
public resetMetadata(): void
public resetMetadataDirective(): void
public resetObjectLockLegalHoldStatus(): void
public resetObjectLockMode(): void
public resetObjectLockRetainUntilDate(): void
public resetRequestPayer(): void
public resetServerSideEncryption(): void
public resetSourceCustomerAlgorithm(): void
public resetSourceCustomerKey(): void
public resetSourceCustomerKeyMd5(): void
public resetStorageClass(): void
public resetTaggingDirective(): void
public resetTags(): void
public resetTagsAll(): void
public resetWebsiteRedirect(): void
Name | Description |
---|---|
isConstruct |
Checks if x is a construct. |
isTerraformElement |
No description. |
isTerraformResource |
No description. |
import { s3ObjectCopy } from '@cdktf/aws-cdk'
s3ObjectCopy.S3ObjectCopy.isConstruct(x: any)
Checks if x
is a construct.
Use this method instead of instanceof
to properly detect Construct
instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the constructs
library on
disk are seen as independent, completely different libraries. As a
consequence, the class Construct
in each copy of the constructs
library
is seen as a different class, and an instance of one class will not test as
instanceof
the other class. npm install
will not create installations
like this, but users may manually symlink construct libraries together or
use a monorepo tool: in those cases, multiple copies of the constructs
library can be accidentally installed, and instanceof
will behave
unpredictably. It is safest to avoid using instanceof
, and using
this type-testing method instead.
- Type: any
Any object.
import { s3ObjectCopy } from '@cdktf/aws-cdk'
s3ObjectCopy.S3ObjectCopy.isTerraformElement(x: any)
- Type: any
import { s3ObjectCopy } from '@cdktf/aws-cdk'
s3ObjectCopy.S3ObjectCopy.isTerraformResource(x: any)
- Type: any
Name | Type | Description |
---|---|---|
node |
constructs.Node |
The tree node. |
cdktfStack |
cdktf.TerraformStack |
No description. |
fqn |
string |
No description. |
friendlyUniqueId |
string |
No description. |
terraformMetaArguments |
{[ key: string ]: any} |
No description. |
terraformResourceType |
string |
No description. |
terraformGeneratorMetadata |
cdktf.TerraformProviderGeneratorMetadata |
No description. |
connection |
cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection |
No description. |
count |
number | cdktf.TerraformCount |
No description. |
dependsOn |
string[] |
No description. |
forEach |
cdktf.ITerraformIterator |
No description. |
lifecycle |
cdktf.TerraformResourceLifecycle |
No description. |
provider |
cdktf.TerraformProvider |
No description. |
provisioners |
cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[] |
No description. |
etag |
string |
No description. |
expiration |
string |
No description. |
grant |
S3ObjectCopyGrantList |
No description. |
lastModified |
string |
No description. |
requestCharged |
cdktf.IResolvable |
No description. |
sourceVersionId |
string |
No description. |
versionId |
string |
No description. |
aclInput |
string |
No description. |
bucketInput |
string |
No description. |
bucketKeyEnabledInput |
boolean | cdktf.IResolvable |
No description. |
cacheControlInput |
string |
No description. |
contentDispositionInput |
string |
No description. |
contentEncodingInput |
string |
No description. |
contentLanguageInput |
string |
No description. |
contentTypeInput |
string |
No description. |
copyIfMatchInput |
string |
No description. |
copyIfModifiedSinceInput |
string |
No description. |
copyIfNoneMatchInput |
string |
No description. |
copyIfUnmodifiedSinceInput |
string |
No description. |
customerAlgorithmInput |
string |
No description. |
customerKeyInput |
string |
No description. |
customerKeyMd5Input |
string |
No description. |
expectedBucketOwnerInput |
string |
No description. |
expectedSourceBucketOwnerInput |
string |
No description. |
expiresInput |
string |
No description. |
forceDestroyInput |
boolean | cdktf.IResolvable |
No description. |
grantInput |
cdktf.IResolvable | S3ObjectCopyGrant[] |
No description. |
idInput |
string |
No description. |
keyInput |
string |
No description. |
kmsEncryptionContextInput |
string |
No description. |
kmsKeyIdInput |
string |
No description. |
metadataDirectiveInput |
string |
No description. |
metadataInput |
{[ key: string ]: string} |
No description. |
objectLockLegalHoldStatusInput |
string |
No description. |
objectLockModeInput |
string |
No description. |
objectLockRetainUntilDateInput |
string |
No description. |
requestPayerInput |
string |
No description. |
serverSideEncryptionInput |
string |
No description. |
sourceCustomerAlgorithmInput |
string |
No description. |
sourceCustomerKeyInput |
string |
No description. |
sourceCustomerKeyMd5Input |
string |
No description. |
sourceInput |
string |
No description. |
storageClassInput |
string |
No description. |
taggingDirectiveInput |
string |
No description. |
tagsAllInput |
{[ key: string ]: string} |
No description. |
tagsInput |
{[ key: string ]: string} |
No description. |
websiteRedirectInput |
string |
No description. |
acl |
string |
No description. |
bucket |
string |
No description. |
bucketKeyEnabled |
boolean | cdktf.IResolvable |
No description. |
cacheControl |
string |
No description. |
contentDisposition |
string |
No description. |
contentEncoding |
string |
No description. |
contentLanguage |
string |
No description. |
contentType |
string |
No description. |
copyIfMatch |
string |
No description. |
copyIfModifiedSince |
string |
No description. |
copyIfNoneMatch |
string |
No description. |
copyIfUnmodifiedSince |
string |
No description. |
customerAlgorithm |
string |
No description. |
customerKey |
string |
No description. |
customerKeyMd5 |
string |
No description. |
expectedBucketOwner |
string |
No description. |
expectedSourceBucketOwner |
string |
No description. |
expires |
string |
No description. |
forceDestroy |
boolean | cdktf.IResolvable |
No description. |
id |
string |
No description. |
key |
string |
No description. |
kmsEncryptionContext |
string |
No description. |
kmsKeyId |
string |
No description. |
metadata |
{[ key: string ]: string} |
No description. |
metadataDirective |
string |
No description. |
objectLockLegalHoldStatus |
string |
No description. |
objectLockMode |
string |
No description. |
objectLockRetainUntilDate |
string |
No description. |
requestPayer |
string |
No description. |
serverSideEncryption |
string |
No description. |
source |
string |
No description. |
sourceCustomerAlgorithm |
string |
No description. |
sourceCustomerKey |
string |
No description. |
sourceCustomerKeyMd5 |
string |
No description. |
storageClass |
string |
No description. |
taggingDirective |
string |
No description. |
tags |
{[ key: string ]: string} |
No description. |
tagsAll |
{[ key: string ]: string} |
No description. |
websiteRedirect |
string |
No description. |
public readonly node: Node;
- Type: constructs.Node
The tree node.
public readonly cdktfStack: TerraformStack;
- Type: cdktf.TerraformStack
public readonly fqn: string;
- Type: string
public readonly friendlyUniqueId: string;
- Type: string
public readonly terraformMetaArguments: {[ key: string ]: any};
- Type: {[ key: string ]: any}
public readonly terraformResourceType: string;
- Type: string
public readonly terraformGeneratorMetadata: TerraformProviderGeneratorMetadata;
- Type: cdktf.TerraformProviderGeneratorMetadata
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: string[];
- Type: string[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly etag: string;
- Type: string
public readonly expiration: string;
- Type: string
public readonly grant: S3ObjectCopyGrantList;
- Type: S3ObjectCopyGrantList
public readonly lastModified: string;
- Type: string
public readonly requestCharged: IResolvable;
- Type: cdktf.IResolvable
public readonly sourceVersionId: string;
- Type: string
public readonly versionId: string;
- Type: string
public readonly aclInput: string;
- Type: string
public readonly bucketInput: string;
- Type: string
public readonly bucketKeyEnabledInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly cacheControlInput: string;
- Type: string
public readonly contentDispositionInput: string;
- Type: string
public readonly contentEncodingInput: string;
- Type: string
public readonly contentLanguageInput: string;
- Type: string
public readonly contentTypeInput: string;
- Type: string
public readonly copyIfMatchInput: string;
- Type: string
public readonly copyIfModifiedSinceInput: string;
- Type: string
public readonly copyIfNoneMatchInput: string;
- Type: string
public readonly copyIfUnmodifiedSinceInput: string;
- Type: string
public readonly customerAlgorithmInput: string;
- Type: string
public readonly customerKeyInput: string;
- Type: string
public readonly customerKeyMd5Input: string;
- Type: string
public readonly expectedBucketOwnerInput: string;
- Type: string
public readonly expectedSourceBucketOwnerInput: string;
- Type: string
public readonly expiresInput: string;
- Type: string
public readonly forceDestroyInput: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly grantInput: IResolvable | S3ObjectCopyGrant[];
- Type: cdktf.IResolvable | S3ObjectCopyGrant[]
public readonly idInput: string;
- Type: string
public readonly keyInput: string;
- Type: string
public readonly kmsEncryptionContextInput: string;
- Type: string
public readonly kmsKeyIdInput: string;
- Type: string
public readonly metadataDirectiveInput: string;
- Type: string
public readonly metadataInput: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly objectLockLegalHoldStatusInput: string;
- Type: string
public readonly objectLockModeInput: string;
- Type: string
public readonly objectLockRetainUntilDateInput: string;
- Type: string
public readonly requestPayerInput: string;
- Type: string
public readonly serverSideEncryptionInput: string;
- Type: string
public readonly sourceCustomerAlgorithmInput: string;
- Type: string
public readonly sourceCustomerKeyInput: string;
- Type: string
public readonly sourceCustomerKeyMd5Input: string;
- Type: string
public readonly sourceInput: string;
- Type: string
public readonly storageClassInput: string;
- Type: string
public readonly taggingDirectiveInput: string;
- Type: string
public readonly tagsAllInput: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly tagsInput: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly websiteRedirectInput: string;
- Type: string
public readonly acl: string;
- Type: string
public readonly bucket: string;
- Type: string
public readonly bucketKeyEnabled: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly cacheControl: string;
- Type: string
public readonly contentDisposition: string;
- Type: string
public readonly contentEncoding: string;
- Type: string
public readonly contentLanguage: string;
- Type: string
public readonly contentType: string;
- Type: string
public readonly copyIfMatch: string;
- Type: string
public readonly copyIfModifiedSince: string;
- Type: string
public readonly copyIfNoneMatch: string;
- Type: string
public readonly copyIfUnmodifiedSince: string;
- Type: string
public readonly customerAlgorithm: string;
- Type: string
public readonly customerKey: string;
- Type: string
public readonly customerKeyMd5: string;
- Type: string
public readonly expectedBucketOwner: string;
- Type: string
public readonly expectedSourceBucketOwner: string;
- Type: string
public readonly expires: string;
- Type: string
public readonly forceDestroy: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
public readonly id: string;
- Type: string
public readonly key: string;
- Type: string
public readonly kmsEncryptionContext: string;
- Type: string
public readonly kmsKeyId: string;
- Type: string
public readonly metadata: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly metadataDirective: string;
- Type: string
public readonly objectLockLegalHoldStatus: string;
- Type: string
public readonly objectLockMode: string;
- Type: string
public readonly objectLockRetainUntilDate: string;
- Type: string
public readonly requestPayer: string;
- Type: string
public readonly serverSideEncryption: string;
- Type: string
public readonly source: string;
- Type: string
public readonly sourceCustomerAlgorithm: string;
- Type: string
public readonly sourceCustomerKey: string;
- Type: string
public readonly sourceCustomerKeyMd5: string;
- Type: string
public readonly storageClass: string;
- Type: string
public readonly taggingDirective: string;
- Type: string
public readonly tags: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly tagsAll: {[ key: string ]: string};
- Type: {[ key: string ]: string}
public readonly websiteRedirect: string;
- Type: string
Name | Type | Description |
---|---|---|
tfResourceType |
string |
No description. |
public readonly tfResourceType: string;
- Type: string
import { s3ObjectCopy } from '@cdktf/aws-cdk'
const s3ObjectCopyConfig: s3ObjectCopy.S3ObjectCopyConfig = { ... }
public readonly connection: SSHProvisionerConnection | WinrmProvisionerConnection;
- Type: cdktf.SSHProvisionerConnection | cdktf.WinrmProvisionerConnection
public readonly count: number | TerraformCount;
- Type: number | cdktf.TerraformCount
public readonly dependsOn: ITerraformDependable[];
- Type: cdktf.ITerraformDependable[]
public readonly forEach: ITerraformIterator;
- Type: cdktf.ITerraformIterator
public readonly lifecycle: TerraformResourceLifecycle;
- Type: cdktf.TerraformResourceLifecycle
public readonly provider: TerraformProvider;
- Type: cdktf.TerraformProvider
public readonly provisioners: FileProvisioner | LocalExecProvisioner | RemoteExecProvisioner[];
- Type: cdktf.FileProvisioner | cdktf.LocalExecProvisioner | cdktf.RemoteExecProvisioner[]
public readonly bucket: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#bucket S3ObjectCopy#bucket}.
public readonly key: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#key S3ObjectCopy#key}.
public readonly source: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#source S3ObjectCopy#source}.
public readonly acl: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#acl S3ObjectCopy#acl}.
public readonly bucketKeyEnabled: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#bucket_key_enabled S3ObjectCopy#bucket_key_enabled}.
public readonly cacheControl: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#cache_control S3ObjectCopy#cache_control}.
public readonly contentDisposition: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#content_disposition S3ObjectCopy#content_disposition}.
public readonly contentEncoding: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#content_encoding S3ObjectCopy#content_encoding}.
public readonly contentLanguage: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#content_language S3ObjectCopy#content_language}.
public readonly contentType: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#content_type S3ObjectCopy#content_type}.
public readonly copyIfMatch: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#copy_if_match S3ObjectCopy#copy_if_match}.
public readonly copyIfModifiedSince: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#copy_if_modified_since S3ObjectCopy#copy_if_modified_since}.
public readonly copyIfNoneMatch: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#copy_if_none_match S3ObjectCopy#copy_if_none_match}.
public readonly copyIfUnmodifiedSince: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#copy_if_unmodified_since S3ObjectCopy#copy_if_unmodified_since}.
public readonly customerAlgorithm: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#customer_algorithm S3ObjectCopy#customer_algorithm}.
public readonly customerKey: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#customer_key S3ObjectCopy#customer_key}.
public readonly customerKeyMd5: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#customer_key_md5 S3ObjectCopy#customer_key_md5}.
public readonly expectedBucketOwner: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#expected_bucket_owner S3ObjectCopy#expected_bucket_owner}.
public readonly expectedSourceBucketOwner: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#expected_source_bucket_owner S3ObjectCopy#expected_source_bucket_owner}.
public readonly expires: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#expires S3ObjectCopy#expires}.
public readonly forceDestroy: boolean | IResolvable;
- Type: boolean | cdktf.IResolvable
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#force_destroy S3ObjectCopy#force_destroy}.
public readonly grant: IResolvable | S3ObjectCopyGrant[];
- Type: cdktf.IResolvable | S3ObjectCopyGrant[]
grant block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#grant S3ObjectCopy#grant}
public readonly id: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#id S3ObjectCopy#id}.
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
public readonly kmsEncryptionContext: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#kms_encryption_context S3ObjectCopy#kms_encryption_context}.
public readonly kmsKeyId: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#kms_key_id S3ObjectCopy#kms_key_id}.
public readonly metadata: {[ key: string ]: string};
- Type: {[ key: string ]: string}
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#metadata S3ObjectCopy#metadata}.
public readonly metadataDirective: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#metadata_directive S3ObjectCopy#metadata_directive}.
public readonly objectLockLegalHoldStatus: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#object_lock_legal_hold_status S3ObjectCopy#object_lock_legal_hold_status}.
public readonly objectLockMode: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#object_lock_mode S3ObjectCopy#object_lock_mode}.
public readonly objectLockRetainUntilDate: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#object_lock_retain_until_date S3ObjectCopy#object_lock_retain_until_date}.
public readonly requestPayer: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#request_payer S3ObjectCopy#request_payer}.
public readonly serverSideEncryption: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#server_side_encryption S3ObjectCopy#server_side_encryption}.
public readonly sourceCustomerAlgorithm: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#source_customer_algorithm S3ObjectCopy#source_customer_algorithm}.
public readonly sourceCustomerKey: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#source_customer_key S3ObjectCopy#source_customer_key}.
public readonly sourceCustomerKeyMd5: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#source_customer_key_md5 S3ObjectCopy#source_customer_key_md5}.
public readonly storageClass: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#storage_class S3ObjectCopy#storage_class}.
public readonly taggingDirective: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#tagging_directive S3ObjectCopy#tagging_directive}.
public readonly tags: {[ key: string ]: string};
- Type: {[ key: string ]: string}
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#tags S3ObjectCopy#tags}.
public readonly tagsAll: {[ key: string ]: string};
- Type: {[ key: string ]: string}
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#tags_all S3ObjectCopy#tags_all}.
public readonly websiteRedirect: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#website_redirect S3ObjectCopy#website_redirect}.
import { s3ObjectCopy } from '@cdktf/aws-cdk'
const s3ObjectCopyGrant: s3ObjectCopy.S3ObjectCopyGrant = { ... }
Name | Type | Description |
---|---|---|
permissions |
string[] |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#permissions S3ObjectCopy#permissions}. |
type |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#type S3ObjectCopy#type}. |
email |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#email S3ObjectCopy#email}. |
id |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#id S3ObjectCopy#id}. |
uri |
string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#uri S3ObjectCopy#uri}. |
public readonly permissions: string[];
- Type: string[]
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#permissions S3ObjectCopy#permissions}.
public readonly type: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#type S3ObjectCopy#type}.
public readonly email: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#email S3ObjectCopy#email}.
public readonly id: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#id S3ObjectCopy#id}.
Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
public readonly uri: string;
- Type: string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/aws/3.76.1/docs/resources/s3_object_copy#uri S3ObjectCopy#uri}.
import { s3ObjectCopy } from '@cdktf/aws-cdk'
new s3ObjectCopy.S3ObjectCopyGrantList(terraformResource: IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
wrapsSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
computeFqn |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
get |
No description. |
public computeFqn(): string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public get(index: number): S3ObjectCopyGrantOutputReference
- Type: number
the index of the item to return.
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
internalValue |
cdktf.IResolvable | S3ObjectCopyGrant[] |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly internalValue: IResolvable | S3ObjectCopyGrant[];
- Type: cdktf.IResolvable | S3ObjectCopyGrant[]
import { s3ObjectCopy } from '@cdktf/aws-cdk'
new s3ObjectCopy.S3ObjectCopyGrantOutputReference(terraformResource: IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean)
Name | Type | Description |
---|---|---|
terraformResource |
cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
string |
The attribute on the parent resource this class is referencing. |
complexObjectIndex |
number |
the index of this item in the list. |
complexObjectIsFromSet |
boolean |
whether the list is wrapping a set (will add tolist() to be able to access an item via an index). |
- Type: cdktf.IInterpolatingParent
The parent resource.
- Type: string
The attribute on the parent resource this class is referencing.
- Type: number
the index of this item in the list.
- Type: boolean
whether the list is wrapping a set (will add tolist() to be able to access an item via an index).
Name | Description |
---|---|
computeFqn |
No description. |
getAnyMapAttribute |
No description. |
getBooleanAttribute |
No description. |
getBooleanMapAttribute |
No description. |
getListAttribute |
No description. |
getNumberAttribute |
No description. |
getNumberListAttribute |
No description. |
getNumberMapAttribute |
No description. |
getStringAttribute |
No description. |
getStringMapAttribute |
No description. |
interpolationForAttribute |
No description. |
resolve |
Produce the Token's value at resolution time. |
toString |
Return a string representation of this resolvable object. |
resetEmail |
No description. |
resetId |
No description. |
resetUri |
No description. |
public computeFqn(): string
public getAnyMapAttribute(terraformAttribute: string): {[ key: string ]: any}
- Type: string
public getBooleanAttribute(terraformAttribute: string): IResolvable
- Type: string
public getBooleanMapAttribute(terraformAttribute: string): {[ key: string ]: boolean}
- Type: string
public getListAttribute(terraformAttribute: string): string[]
- Type: string
public getNumberAttribute(terraformAttribute: string): number
- Type: string
public getNumberListAttribute(terraformAttribute: string): number[]
- Type: string
public getNumberMapAttribute(terraformAttribute: string): {[ key: string ]: number}
- Type: string
public getStringAttribute(terraformAttribute: string): string
- Type: string
public getStringMapAttribute(terraformAttribute: string): {[ key: string ]: string}
- Type: string
public interpolationForAttribute(property: string): IResolvable
- Type: string
public resolve(_context: IResolveContext): any
Produce the Token's value at resolution time.
- Type: cdktf.IResolveContext
public toString(): string
Return a string representation of this resolvable object.
Returns a reversible string representation.
public resetEmail(): void
public resetId(): void
public resetUri(): void
Name | Type | Description |
---|---|---|
creationStack |
string[] |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
fqn |
string |
No description. |
emailInput |
string |
No description. |
idInput |
string |
No description. |
permissionsInput |
string[] |
No description. |
typeInput |
string |
No description. |
uriInput |
string |
No description. |
email |
string |
No description. |
id |
string |
No description. |
permissions |
string[] |
No description. |
type |
string |
No description. |
uri |
string |
No description. |
internalValue |
cdktf.IResolvable | S3ObjectCopyGrant |
No description. |
public readonly creationStack: string[];
- Type: string[]
The creation stack of this resolvable which will be appended to errors thrown during resolution.
If this returns an empty array the stack will not be attached.
public readonly fqn: string;
- Type: string
public readonly emailInput: string;
- Type: string
public readonly idInput: string;
- Type: string
public readonly permissionsInput: string[];
- Type: string[]
public readonly typeInput: string;
- Type: string
public readonly uriInput: string;
- Type: string
public readonly email: string;
- Type: string
public readonly id: string;
- Type: string
public readonly permissions: string[];
- Type: string[]
public readonly type: string;
- Type: string
public readonly uri: string;
- Type: string
public readonly internalValue: IResolvable | S3ObjectCopyGrant;
- Type: cdktf.IResolvable | S3ObjectCopyGrant