All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cloudshift.awscdk.dsl.services.s3.CfnBucketInventoryConfigurationPropertyDsl.kt Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")

package cloudshift.awscdk.dsl.services.s3

import cloudshift.awscdk.common.CdkDslMarker
import kotlin.Boolean
import kotlin.String
import kotlin.collections.Collection
import kotlin.collections.MutableList
import software.amazon.awscdk.IResolvable
import software.amazon.awscdk.services.s3.CfnBucket

/**
 * Specifies the inventory configuration for an Amazon S3 bucket.
 *
 * For more information, see [GET Bucket
 * inventory](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html) in the
 * *Amazon S3 API Reference* .
 *
 * Example:
 *
 * ```
 * // The code below shows an example of how to instantiate this type.
 * // The values are placeholders you should change.
 * import software.amazon.awscdk.services.s3.*;
 * InventoryConfigurationProperty inventoryConfigurationProperty =
 * InventoryConfigurationProperty.builder()
 * .destination(DestinationProperty.builder()
 * .bucketArn("bucketArn")
 * .format("format")
 * // the properties below are optional
 * .bucketAccountId("bucketAccountId")
 * .prefix("prefix")
 * .build())
 * .enabled(false)
 * .id("id")
 * .includedObjectVersions("includedObjectVersions")
 * .scheduleFrequency("scheduleFrequency")
 * // the properties below are optional
 * .optionalFields(List.of("optionalFields"))
 * .prefix("prefix")
 * .build();
 * ```
 *
 * [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventoryconfiguration.html)
 */
@CdkDslMarker
public class CfnBucketInventoryConfigurationPropertyDsl {
  private val cdkBuilder: CfnBucket.InventoryConfigurationProperty.Builder =
      CfnBucket.InventoryConfigurationProperty.builder()

  private val _optionalFields: MutableList = mutableListOf()

  /**
   * @param destination Contains information about where to publish the inventory results. 
   */
  public fun destination(destination: IResolvable) {
    cdkBuilder.destination(destination)
  }

  /**
   * @param destination Contains information about where to publish the inventory results. 
   */
  public fun destination(destination: CfnBucket.DestinationProperty) {
    cdkBuilder.destination(destination)
  }

  /**
   * @param enabled Specifies whether the inventory is enabled or disabled. 
   * If set to `True` , an inventory list is generated. If set to `False` , no inventory list is
   * generated.
   */
  public fun enabled(enabled: Boolean) {
    cdkBuilder.enabled(enabled)
  }

  /**
   * @param enabled Specifies whether the inventory is enabled or disabled. 
   * If set to `True` , an inventory list is generated. If set to `False` , no inventory list is
   * generated.
   */
  public fun enabled(enabled: IResolvable) {
    cdkBuilder.enabled(enabled)
  }

  /**
   * @param id The ID used to identify the inventory configuration. 
   */
  public fun id(id: String) {
    cdkBuilder.id(id)
  }

  /**
   * @param includedObjectVersions Object versions to include in the inventory list. 
   * If set to `All` , the list includes all the object versions, which adds the version-related
   * fields `VersionId` , `IsLatest` , and `DeleteMarker` to the list. If set to `Current` , the list
   * does not contain these version-related fields.
   */
  public fun includedObjectVersions(includedObjectVersions: String) {
    cdkBuilder.includedObjectVersions(includedObjectVersions)
  }

  /**
   * @param optionalFields Contains the optional fields that are included in the inventory results.
   * *Valid values* : `Size | LastModifiedDate | StorageClass | ETag | IsMultipartUploaded |
   * ReplicationStatus | EncryptionStatus | ObjectLockRetainUntilDate | ObjectLockMode |
   * ObjectLockLegalHoldStatus | IntelligentTieringAccessTier | BucketKeyStatus`
   */
  public fun optionalFields(vararg optionalFields: String) {
    _optionalFields.addAll(listOf(*optionalFields))
  }

  /**
   * @param optionalFields Contains the optional fields that are included in the inventory results.
   * *Valid values* : `Size | LastModifiedDate | StorageClass | ETag | IsMultipartUploaded |
   * ReplicationStatus | EncryptionStatus | ObjectLockRetainUntilDate | ObjectLockMode |
   * ObjectLockLegalHoldStatus | IntelligentTieringAccessTier | BucketKeyStatus`
   */
  public fun optionalFields(optionalFields: Collection) {
    _optionalFields.addAll(optionalFields)
  }

  /**
   * @param prefix Specifies the inventory filter prefix.
   */
  public fun prefix(prefix: String) {
    cdkBuilder.prefix(prefix)
  }

  /**
   * @param scheduleFrequency Specifies the schedule for generating inventory results. 
   * *Allowed values* : `Daily` | `Weekly`
   */
  public fun scheduleFrequency(scheduleFrequency: String) {
    cdkBuilder.scheduleFrequency(scheduleFrequency)
  }

  public fun build(): CfnBucket.InventoryConfigurationProperty {
    if(_optionalFields.isNotEmpty()) cdkBuilder.optionalFields(_optionalFields)
    return cdkBuilder.build()
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy