Documentation ¶
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.
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 ¶
func (ContainerArgs) ElementType() reflect.Type
type ContainerPolicy ¶
type ContainerPolicy struct { pulumi.CustomResourceState // The name of the container. ContainerName pulumi.StringOutput `pulumi:"containerName"` // The contents of the policy. Policy pulumi.StringOutput `pulumi:"policy"` }
Provides a MediaStore Container Policy.
func GetContainerPolicy ¶
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 ¶
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 ¶
type ContainerPolicyArgs struct { // The name of the container. ContainerName pulumi.StringInput // The contents of the policy. Policy pulumi.StringInput }
The set of arguments for constructing a ContainerPolicy resource.
func (ContainerPolicyArgs) ElementType ¶
func (ContainerPolicyArgs) ElementType() reflect.Type
type ContainerPolicyState ¶
type ContainerPolicyState struct { // The name of the container. ContainerName pulumi.StringPtrInput // The contents of the policy. Policy pulumi.StringPtrInput }
func (ContainerPolicyState) ElementType ¶
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 ¶
func (ContainerState) ElementType() reflect.Type