Documentation
¶
Overview ¶
nolint: lll
nolint: lll
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Container ¶
type Container struct { pulumi.CustomResourceState // The ARN of the container. Arn pulumi.StringOutput `pulumi:"arn"` // The DNS endpoint of the container. Endpoint pulumi.StringOutput `pulumi:"endpoint"` // The name of the container. Must contain alphanumeric characters or underscores. Name pulumi.StringOutput `pulumi:"name"` // A mapping of tags to assign to the resource. Tags pulumi.MapOutput `pulumi:"tags"` }
Provides a MediaStore Container.
> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/r/media_store_container.html.markdown.
func GetContainer ¶
func GetContainer(ctx *pulumi.Context, name string, id pulumi.IDInput, state *ContainerState, opts ...pulumi.ResourceOption) (*Container, error)
GetContainer gets an existing Container resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewContainer ¶
func NewContainer(ctx *pulumi.Context, name string, args *ContainerArgs, opts ...pulumi.ResourceOption) (*Container, error)
NewContainer registers a new resource with the given unique name, arguments, and options.
type ContainerArgs ¶
type ContainerArgs struct { // The name of the container. Must contain alphanumeric characters or underscores. Name pulumi.StringPtrInput // A mapping of tags to assign to the resource. Tags pulumi.MapInput }
The set of arguments for constructing a Container resource.
func (ContainerArgs) ElementType ¶ added in v1.19.0
func (ContainerArgs) ElementType() reflect.Type
type ContainerPolicy ¶ added in v0.14.2
type ContainerPolicy struct { pulumi.CustomResourceState // The name of the container. ContainerName pulumi.StringOutput `pulumi:"containerName"` Policy pulumi.StringOutput `pulumi:"policy"` }
Provides a MediaStore Container Policy.
> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/r/media_store_container_policy.html.markdown.
func GetContainerPolicy ¶ added in v0.14.2
func GetContainerPolicy(ctx *pulumi.Context, name string, id pulumi.IDInput, state *ContainerPolicyState, opts ...pulumi.ResourceOption) (*ContainerPolicy, error)
GetContainerPolicy gets an existing ContainerPolicy resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewContainerPolicy ¶ added in v0.14.2
func NewContainerPolicy(ctx *pulumi.Context, name string, args *ContainerPolicyArgs, opts ...pulumi.ResourceOption) (*ContainerPolicy, error)
NewContainerPolicy registers a new resource with the given unique name, arguments, and options.
type ContainerPolicyArgs ¶ added in v0.14.2
type ContainerPolicyArgs struct { // The name of the container. ContainerName pulumi.StringInput Policy pulumi.StringInput }
The set of arguments for constructing a ContainerPolicy resource.
func (ContainerPolicyArgs) ElementType ¶ added in v1.19.0
func (ContainerPolicyArgs) ElementType() reflect.Type
type ContainerPolicyState ¶ added in v0.14.2
type ContainerPolicyState struct { // The name of the container. ContainerName pulumi.StringPtrInput Policy pulumi.StringPtrInput }
func (ContainerPolicyState) ElementType ¶ added in v1.19.0
func (ContainerPolicyState) ElementType() reflect.Type
type ContainerState ¶
type ContainerState struct { // The ARN of the container. Arn pulumi.StringPtrInput // The DNS endpoint of the container. Endpoint pulumi.StringPtrInput // The name of the container. Must contain alphanumeric characters or underscores. Name pulumi.StringPtrInput // A mapping of tags to assign to the resource. Tags pulumi.MapInput }
func (ContainerState) ElementType ¶ added in v1.19.0
func (ContainerState) ElementType() reflect.Type