com.pulumi.gcp.networkservices.kotlin.outputs.EdgeCacheOriginAwsV4Authentication.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.networkservices.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property accessKeyId The access key ID your origin uses to identify the key.
* @property originRegion The name of the AWS region that your origin is in.
* @property secretAccessKeyVersion The Secret Manager secret version of the secret access key used by your origin.
* This is the resource name of the secret version in the format 'projects/*/secrets/*/versions/*' where the '*' values are replaced by the project, secret, and version you require.
* */*/*/
*/
public data class EdgeCacheOriginAwsV4Authentication(
public val accessKeyId: String,
public val originRegion: String,
public val secretAccessKeyVersion: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.networkservices.outputs.EdgeCacheOriginAwsV4Authentication): EdgeCacheOriginAwsV4Authentication = EdgeCacheOriginAwsV4Authentication(
accessKeyId = javaType.accessKeyId(),
originRegion = javaType.originRegion(),
secretAccessKeyVersion = javaType.secretAccessKeyVersion(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy