Class: AWSCDK::ECR::Repository
- Inherits:
-
RepositoryBase
- Object
- RepositoryBase
- AWSCDK::ECR::Repository
- Defined in:
- ecr/repository.rb
Overview
Define an ECR repository.
Class Method Summary collapse
-
.arn_for_local_repository(repository_name, scope, account = nil) ⇒ String
Returns an ECR ARN for a repository that resides in the same account/region as the current stack.
-
.from_lookup(scope, id, options) ⇒ AWSCDK::ECR::IRepository
Lookup an existing repository.
- .from_repository_arn(scope, id, repository_arn) ⇒ AWSCDK::ECR::IRepository
-
.from_repository_attributes(scope, id, attrs) ⇒ AWSCDK::ECR::IRepository
Import a repository.
- .from_repository_name(scope, id, repository_name) ⇒ AWSCDK::ECR::IRepository
- .jsii_overridable_methods ⇒ Object
-
.PROPERTY_INJECTION_ID ⇒ String
Uniquely identifies this class.
Instance Method Summary collapse
-
#add_lifecycle_rule(rule) ⇒ void
Add a life cycle rule to the repository.
-
#add_to_resource_policy(statement) ⇒ AWSCDK::IAM::AddToResourcePolicyResult
Add a policy statement to the repository's resource policy.
-
#apply_cross_stack_reference_strength(strength) ⇒ void
Override the cross-stack reference strength for this resource.
-
#apply_removal_policy(policy) ⇒ void
Apply the given removal policy to this resource.
-
#env ⇒ AWSCDK::Interfaces::ResourceEnvironment
The environment this resource belongs to.
- #generate_physical_name ⇒ String
-
#get_resource_arn_attribute(arn_attr, arn_components) ⇒ String
Returns an environment-sensitive token that should be used for the resource's "ARN" attribute (e.g.
bucket.bucketArn). -
#get_resource_name_attribute(name_attr) ⇒ String
Returns an environment-sensitive token that should be used for the resource's "name" attribute (e.g.
bucket.bucketName). -
#grant(grantee, *actions) ⇒ AWSCDK::IAM::Grant
Grant the given principal identity permissions to perform the actions on this repository [disable-awslint:no-grants].
-
#grant_pull(grantee) ⇒ AWSCDK::IAM::Grant
Grant the given identity permissions to use the images in this repository [disable-awslint:no-grants].
-
#grant_pull_push(grantee) ⇒ AWSCDK::IAM::Grant
Grant the given identity permissions to pull and push images to this repository.
-
#grant_push(grantee) ⇒ AWSCDK::IAM::Grant
Grant the given identity permissions to use the images in this repository [disable-awslint:no-grants].
-
#grant_read(grantee) ⇒ AWSCDK::IAM::Grant
Grant the given identity permissions to read the images in this repository [disable-awslint:no-grants].
-
#initialize(scope, id, props = nil) ⇒ Repository
constructor
A new instance of Repository.
-
#node ⇒ Constructs::Node
The tree node.
-
#on_cloud_trail_event(id, options = nil) ⇒ AWSCDK::Events::Rule
Define a CloudWatch event that triggers when something happens to this repository.
-
#on_cloud_trail_image_pushed(id, options = nil) ⇒ AWSCDK::Events::Rule
Defines an AWS CloudWatch event rule that can trigger a target when an image is pushed to this repository.
-
#on_event(id, options = nil) ⇒ AWSCDK::Events::Rule
Defines a CloudWatch event rule which triggers for repository events.
-
#on_image_scan_completed(id, options = nil) ⇒ AWSCDK::Events::Rule
Defines an AWS CloudWatch event rule that can trigger a target when an image scan is completed.
-
#physical_name ⇒ String
Returns a string-encoded token that resolves to the physical name that should be passed to the CloudFormation resource.
-
#registry_uri ⇒ String
The URI of this repository's registry:.
-
#repository_arn ⇒ String
The ARN of the repository.
-
#repository_name ⇒ String
The name of the repository.
-
#repository_ref ⇒ AWSCDK::Interfaces::AWSECR::RepositoryReference
A reference to this repository.
-
#repository_uri ⇒ String
The URI of this repository (represents the latest image):.
-
#repository_uri_for_digest(digest = nil) ⇒ String
Returns the URL of the repository.
-
#repository_uri_for_tag(tag = nil) ⇒ String
Returns the URL of the repository.
-
#repository_uri_for_tag_or_digest(tag_or_digest = nil) ⇒ String
Returns the URL of the repository.
-
#stack ⇒ AWSCDK::Stack
The stack in which this resource is defined.
-
#to_string ⇒ String
Returns a string representation of this construct.
-
#with(*mixins) ⇒ Constructs::IConstruct
Applies one or more mixins to this construct.
Constructor Details
#initialize(scope, id, props = nil) ⇒ Repository
Returns a new instance of Repository.
11 12 13 14 15 16 17 |
# File 'ecr/repository.rb', line 11 def initialize(scope, id, props = nil) props = props.is_a?(Hash) ? ::AWSCDK::ECR::RepositoryProps.new(**props.transform_keys(&:to_sym)) : props Jsii::Type.check_type(scope, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJjb25zdHJ1Y3RzLkNvbnN0cnVjdCJ9")), "scope") Jsii::Type.check_type(id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id") Jsii::Type.check_type(props, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWNyLlJlcG9zaXRvcnlQcm9wcyJ9")), "props") unless props.nil? Jsii::Object.instance_method(:initialize).bind(self).call(scope, id, props) end |
Class Method Details
.arn_for_local_repository(repository_name, scope, account = nil) ⇒ String
Returns an ECR ARN for a repository that resides in the same account/region as the current stack.
60 61 62 63 64 65 |
# File 'ecr/repository.rb', line 60 def self.arn_for_local_repository(repository_name, scope, account = nil) Jsii::Type.check_type(repository_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "repositoryName") Jsii::Type.check_type(scope, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJjb25zdHJ1Y3RzLklDb25zdHJ1Y3QifQ==")), "scope") Jsii::Type.check_type(account, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "account") unless account.nil? Jsii::Kernel.instance.call_static("aws-cdk-lib.aws_ecr.Repository", "arnForLocalRepository", [repository_name, scope, account]) end |
.from_lookup(scope, id, options) ⇒ AWSCDK::ECR::IRepository
Lookup an existing repository.
73 74 75 76 77 78 79 |
# File 'ecr/repository.rb', line 73 def self.from_lookup(scope, id, ) Jsii::Type.check_type(scope, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJjb25zdHJ1Y3RzLkNvbnN0cnVjdCJ9")), "scope") Jsii::Type.check_type(id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id") = .is_a?(Hash) ? ::AWSCDK::ECR::RepositoryLookupOptions.new(**.transform_keys(&:to_sym)) : Jsii::Type.check_type(, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWNyLlJlcG9zaXRvcnlMb29rdXBPcHRpb25zIn0=")), "options") Jsii::Kernel.instance.call_static("aws-cdk-lib.aws_ecr.Repository", "fromLookup", [scope, id, ]) end |
.from_repository_arn(scope, id, repository_arn) ⇒ AWSCDK::ECR::IRepository
85 86 87 88 89 90 |
# File 'ecr/repository.rb', line 85 def self.from_repository_arn(scope, id, repository_arn) Jsii::Type.check_type(scope, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJjb25zdHJ1Y3RzLkNvbnN0cnVjdCJ9")), "scope") Jsii::Type.check_type(id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id") Jsii::Type.check_type(repository_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "repositoryArn") Jsii::Kernel.instance.call_static("aws-cdk-lib.aws_ecr.Repository", "fromRepositoryArn", [scope, id, repository_arn]) end |
.from_repository_attributes(scope, id, attrs) ⇒ AWSCDK::ECR::IRepository
Import a repository.
98 99 100 101 102 103 104 |
# File 'ecr/repository.rb', line 98 def self.from_repository_attributes(scope, id, attrs) Jsii::Type.check_type(scope, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJjb25zdHJ1Y3RzLkNvbnN0cnVjdCJ9")), "scope") Jsii::Type.check_type(id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id") attrs = attrs.is_a?(Hash) ? ::AWSCDK::ECR::RepositoryAttributes.new(**attrs.transform_keys(&:to_sym)) : attrs Jsii::Type.check_type(attrs, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWNyLlJlcG9zaXRvcnlBdHRyaWJ1dGVzIn0=")), "attrs") Jsii::Kernel.instance.call_static("aws-cdk-lib.aws_ecr.Repository", "fromRepositoryAttributes", [scope, id, attrs]) end |
.from_repository_name(scope, id, repository_name) ⇒ AWSCDK::ECR::IRepository
110 111 112 113 114 115 |
# File 'ecr/repository.rb', line 110 def self.from_repository_name(scope, id, repository_name) Jsii::Type.check_type(scope, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJjb25zdHJ1Y3RzLkNvbnN0cnVjdCJ9")), "scope") Jsii::Type.check_type(id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id") Jsii::Type.check_type(repository_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "repositoryName") Jsii::Kernel.instance.call_static("aws-cdk-lib.aws_ecr.Repository", "fromRepositoryName", [scope, id, repository_name]) end |
.jsii_overridable_methods ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'ecr/repository.rb', line 19 def self.jsii_overridable_methods { :node => { kind: :property, name: "node", is_optional: false }, :env => { kind: :property, name: "env", is_optional: false }, :physical_name => { kind: :property, name: "physicalName", is_optional: false }, :stack => { kind: :property, name: "stack", is_optional: false }, :registry_uri => { kind: :property, name: "registryUri", is_optional: false }, :repository_arn => { kind: :property, name: "repositoryArn", is_optional: false }, :repository_name => { kind: :property, name: "repositoryName", is_optional: false }, :repository_ref => { kind: :property, name: "repositoryRef", is_optional: false }, :repository_uri => { kind: :property, name: "repositoryUri", is_optional: false }, :to_string => { kind: :method, name: "toString", is_optional: false }, :with => { kind: :method, name: "with", is_optional: false }, :apply_cross_stack_reference_strength => { kind: :method, name: "applyCrossStackReferenceStrength", is_optional: false }, :apply_removal_policy => { kind: :method, name: "applyRemovalPolicy", is_optional: false }, :generate_physical_name => { kind: :method, name: "generatePhysicalName", is_optional: false }, :get_resource_arn_attribute => { kind: :method, name: "getResourceArnAttribute", is_optional: false }, :get_resource_name_attribute => { kind: :method, name: "getResourceNameAttribute", is_optional: false }, :add_to_resource_policy => { kind: :method, name: "addToResourcePolicy", is_optional: false }, :grant => { kind: :method, name: "grant", is_optional: false }, :grant_pull => { kind: :method, name: "grantPull", is_optional: false }, :grant_pull_push => { kind: :method, name: "grantPullPush", is_optional: false }, :grant_push => { kind: :method, name: "grantPush", is_optional: false }, :grant_read => { kind: :method, name: "grantRead", is_optional: false }, :on_cloud_trail_event => { kind: :method, name: "onCloudTrailEvent", is_optional: false }, :on_cloud_trail_image_pushed => { kind: :method, name: "onCloudTrailImagePushed", is_optional: false }, :on_event => { kind: :method, name: "onEvent", is_optional: false }, :on_image_scan_completed => { kind: :method, name: "onImageScanCompleted", is_optional: false }, :repository_uri_for_digest => { kind: :method, name: "repositoryUriForDigest", is_optional: false }, :repository_uri_for_tag => { kind: :method, name: "repositoryUriForTag", is_optional: false }, :repository_uri_for_tag_or_digest => { kind: :method, name: "repositoryUriForTagOrDigest", is_optional: false }, :add_lifecycle_rule => { kind: :method, name: "addLifecycleRule", is_optional: false }, } end |
.PROPERTY_INJECTION_ID ⇒ String
Uniquely identifies this class.
202 203 204 |
# File 'ecr/repository.rb', line 202 def self.PROPERTY_INJECTION_ID() Jsii::Kernel.instance.get_static("aws-cdk-lib.aws_ecr.Repository", "PROPERTY_INJECTION_ID") end |
Instance Method Details
#add_lifecycle_rule(rule) ⇒ void
This method returns an undefined value.
Add a life cycle rule to the repository.
Life cycle rules automatically expire images from the repository that match certain conditions.
458 459 460 461 462 |
# File 'ecr/repository.rb', line 458 def add_lifecycle_rule(rule) rule = rule.is_a?(Hash) ? ::AWSCDK::ECR::LifecycleRule.new(**rule.transform_keys(&:to_sym)) : rule Jsii::Type.check_type(rule, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWNyLkxpZmVjeWNsZVJ1bGUifQ==")), "rule") jsii_call_method("addLifecycleRule", [rule]) end |
#add_to_resource_policy(statement) ⇒ AWSCDK::IAM::AddToResourcePolicyResult
Add a policy statement to the repository's resource policy.
While other resources policies in AWS either require or accept a resource section, Cfn for ECR does not allow us to specify a resource policy. It will fail if a resource section is present at all.
304 305 306 307 |
# File 'ecr/repository.rb', line 304 def add_to_resource_policy(statement) Jsii::Type.check_type(statement, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfaWFtLlBvbGljeVN0YXRlbWVudCJ9")), "statement") jsii_call_method("addToResourcePolicy", [statement]) end |
#apply_cross_stack_reference_strength(strength) ⇒ void
This method returns an undefined value.
Override the cross-stack reference strength for this resource.
When set, any cross-stack reference to this resource will use the specified
mechanism instead of the global default determined by the
@aws-cdk/core:defaultCrossStackReferences context key. This is useful for
selectively weakening specific references to avoid the "deadly embrace" problem
without changing the app-wide default.
239 240 241 242 |
# File 'ecr/repository.rb', line 239 def apply_cross_stack_reference_strength(strength) Jsii::Type.check_type(strength, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5SZWZlcmVuY2VTdHJlbmd0aCJ9")), "strength") jsii_call_method("applyCrossStackReferenceStrength", [strength]) end |
#apply_removal_policy(policy) ⇒ void
This method returns an undefined value.
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.
The resource can be deleted (RemovalPolicy.DESTROY), or left in your AWS
account for data recovery and cleanup later (RemovalPolicy.RETAIN).
256 257 258 259 |
# File 'ecr/repository.rb', line 256 def apply_removal_policy(policy) Jsii::Type.check_type(policy, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5SZW1vdmFsUG9saWN5In0=")), "policy") jsii_call_method("applyRemovalPolicy", [policy]) end |
#env ⇒ AWSCDK::Interfaces::ResourceEnvironment
The environment this resource belongs to.
For resources that are created and managed in a Stack (those created by
creating new class instances like new Role(), new Bucket(), etc.), this
is always the same as the environment of the stack they belong to.
For referenced resources (those obtained from referencing methods like
Role.fromRoleArn(), Bucket.fromBucketName(), etc.), they might be
different than the stack they were imported into.
135 136 137 |
# File 'ecr/repository.rb', line 135 def env() jsii_get_property("env") end |
#generate_physical_name ⇒ String
262 263 264 |
# File 'ecr/repository.rb', line 262 def generate_physical_name() jsii_call_method("generatePhysicalName", []) end |
#get_resource_arn_attribute(arn_attr, arn_components) ⇒ String
Returns an environment-sensitive token that should be used for the resource's "ARN" attribute (e.g. bucket.bucketArn).
Normally, this token will resolve to arn_attr, but if the resource is
referenced across environments, arn_components will be used to synthesize
a concrete ARN with the resource's physical name. Make sure to reference
this.physicalName in arn_components.
276 277 278 279 280 281 |
# File 'ecr/repository.rb', line 276 def get_resource_arn_attribute(arn_attr, arn_components) Jsii::Type.check_type(arn_attr, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "arnAttr") arn_components = arn_components.is_a?(Hash) ? ::AWSCDK::ARNComponents.new(**arn_components.transform_keys(&:to_sym)) : arn_components Jsii::Type.check_type(arn_components, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5Bcm5Db21wb25lbnRzIn0=")), "arnComponents") jsii_call_method("getResourceArnAttribute", [arn_attr, arn_components]) end |
#get_resource_name_attribute(name_attr) ⇒ String
Returns an environment-sensitive token that should be used for the resource's "name" attribute (e.g. bucket.bucketName).
Normally, this token will resolve to name_attr, but if the resource is
referenced across environments, it will be resolved to this.physicalName,
which will be a concrete name.
291 292 293 294 |
# File 'ecr/repository.rb', line 291 def get_resource_name_attribute(name_attr) Jsii::Type.check_type(name_attr, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "nameAttr") jsii_call_method("getResourceNameAttribute", [name_attr]) end |
#grant(grantee, *actions) ⇒ AWSCDK::IAM::Grant
Grant the given principal identity permissions to perform the actions on this repository [disable-awslint:no-grants].
314 315 316 317 318 319 320 |
# File 'ecr/repository.rb', line 314 def grant(grantee, *actions) Jsii::Type.check_type(grantee, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfaWFtLklHcmFudGFibGUifQ==")), "grantee") actions.each_with_index do |item, index| Jsii::Type.check_type(item, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "actions[#{index}]") end jsii_call_method("grant", [grantee, *actions]) end |
#grant_pull(grantee) ⇒ AWSCDK::IAM::Grant
Grant the given identity permissions to use the images in this repository [disable-awslint:no-grants].
326 327 328 329 |
# File 'ecr/repository.rb', line 326 def grant_pull(grantee) Jsii::Type.check_type(grantee, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfaWFtLklHcmFudGFibGUifQ==")), "grantee") jsii_call_method("grantPull", [grantee]) end |
#grant_pull_push(grantee) ⇒ AWSCDK::IAM::Grant
Grant the given identity permissions to pull and push images to this repository.
[disable-awslint:no-grants]
337 338 339 340 |
# File 'ecr/repository.rb', line 337 def grant_pull_push(grantee) Jsii::Type.check_type(grantee, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfaWFtLklHcmFudGFibGUifQ==")), "grantee") jsii_call_method("grantPullPush", [grantee]) end |
#grant_push(grantee) ⇒ AWSCDK::IAM::Grant
Grant the given identity permissions to use the images in this repository [disable-awslint:no-grants].
346 347 348 349 |
# File 'ecr/repository.rb', line 346 def grant_push(grantee) Jsii::Type.check_type(grantee, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfaWFtLklHcmFudGFibGUifQ==")), "grantee") jsii_call_method("grantPush", [grantee]) end |
#grant_read(grantee) ⇒ AWSCDK::IAM::Grant
Grant the given identity permissions to read the images in this repository [disable-awslint:no-grants].
355 356 357 358 |
# File 'ecr/repository.rb', line 355 def grant_read(grantee) Jsii::Type.check_type(grantee, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfaWFtLklHcmFudGFibGUifQ==")), "grantee") jsii_call_method("grantRead", [grantee]) end |
#node ⇒ Constructs::Node
The tree node.
120 121 122 |
# File 'ecr/repository.rb', line 120 def node() jsii_get_property("node") end |
#on_cloud_trail_event(id, options = nil) ⇒ AWSCDK::Events::Rule
Define a CloudWatch event that triggers when something happens to this repository.
Requires that there exists at least one CloudTrail Trail in your account that captures the event. This method will not create the Trail.
368 369 370 371 372 373 |
# File 'ecr/repository.rb', line 368 def on_cloud_trail_event(id, = nil) Jsii::Type.check_type(id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id") = .is_a?(Hash) ? ::AWSCDK::Events::OnEventOptions.new(**.transform_keys(&:to_sym)) : Jsii::Type.check_type(, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZXZlbnRzLk9uRXZlbnRPcHRpb25zIn0=")), "options") unless .nil? jsii_call_method("onCloudTrailEvent", [id, ]) end |
#on_cloud_trail_image_pushed(id, options = nil) ⇒ AWSCDK::Events::Rule
Defines an AWS CloudWatch event rule that can trigger a target when an image is pushed to this repository.
Requires that there exists at least one CloudTrail Trail in your account that captures the event. This method will not create the Trail.
383 384 385 386 387 388 |
# File 'ecr/repository.rb', line 383 def on_cloud_trail_image_pushed(id, = nil) Jsii::Type.check_type(id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id") = .is_a?(Hash) ? ::AWSCDK::ECR::OnCloudTrailImagePushedOptions.new(**.transform_keys(&:to_sym)) : Jsii::Type.check_type(, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWNyLk9uQ2xvdWRUcmFpbEltYWdlUHVzaGVkT3B0aW9ucyJ9")), "options") unless .nil? jsii_call_method("onCloudTrailImagePushed", [id, ]) end |
#on_event(id, options = nil) ⇒ AWSCDK::Events::Rule
Defines a CloudWatch event rule which triggers for repository events.
Use
rule.addEventPattern(pattern) to specify a filter.
398 399 400 401 402 403 |
# File 'ecr/repository.rb', line 398 def on_event(id, = nil) Jsii::Type.check_type(id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id") = .is_a?(Hash) ? ::AWSCDK::Events::OnEventOptions.new(**.transform_keys(&:to_sym)) : Jsii::Type.check_type(, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZXZlbnRzLk9uRXZlbnRPcHRpb25zIn0=")), "options") unless .nil? jsii_call_method("onEvent", [id, ]) end |
#on_image_scan_completed(id, options = nil) ⇒ AWSCDK::Events::Rule
Defines an AWS CloudWatch event rule that can trigger a target when an image scan is completed.
410 411 412 413 414 415 |
# File 'ecr/repository.rb', line 410 def on_image_scan_completed(id, = nil) Jsii::Type.check_type(id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id") = .is_a?(Hash) ? ::AWSCDK::ECR::OnImageScanCompletedOptions.new(**.transform_keys(&:to_sym)) : Jsii::Type.check_type(, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZWNyLk9uSW1hZ2VTY2FuQ29tcGxldGVkT3B0aW9ucyJ9")), "options") unless .nil? jsii_call_method("onImageScanCompleted", [id, ]) end |
#physical_name ⇒ String
Returns a string-encoded token that resolves to the physical name that should be passed to the CloudFormation resource.
This value will resolve to one of the following:
- a concrete value (e.g.
"my-awesome-bucket") undefined, when a name should be generated by CloudFormation- a concrete name generated automatically during synthesis, in cross-environment scenarios.
149 150 151 |
# File 'ecr/repository.rb', line 149 def physical_name() jsii_get_property("physicalName") end |
#registry_uri ⇒ String
The URI of this repository's registry:.
ACCOUNT.dkr.ecr.REGION.amazonaws.com
165 166 167 |
# File 'ecr/repository.rb', line 165 def registry_uri() jsii_get_property("registryUri") end |
#repository_arn ⇒ String
The ARN of the repository.
172 173 174 |
# File 'ecr/repository.rb', line 172 def repository_arn() jsii_get_property("repositoryArn") end |
#repository_name ⇒ String
The name of the repository.
179 180 181 |
# File 'ecr/repository.rb', line 179 def repository_name() jsii_get_property("repositoryName") end |
#repository_ref ⇒ AWSCDK::Interfaces::AWSECR::RepositoryReference
A reference to this repository.
186 187 188 |
# File 'ecr/repository.rb', line 186 def repository_ref() jsii_get_property("repositoryRef") end |
#repository_uri ⇒ String
The URI of this repository (represents the latest image):.
ACCOUNT.dkr.ecr.REGION.amazonaws.com/REPOSITORY
195 196 197 |
# File 'ecr/repository.rb', line 195 def repository_uri() jsii_get_property("repositoryUri") end |
#repository_uri_for_digest(digest = nil) ⇒ String
Returns the URL of the repository. Can be used in docker push/pull.
ACCOUNT.dkr.ecr.REGION.amazonaws.com/REPOSITORY[@DIGEST]
423 424 425 426 |
# File 'ecr/repository.rb', line 423 def repository_uri_for_digest(digest = nil) Jsii::Type.check_type(digest, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "digest") unless digest.nil? jsii_call_method("repositoryUriForDigest", [digest]) end |
#repository_uri_for_tag(tag = nil) ⇒ String
Returns the URL of the repository. Can be used in docker push/pull.
ACCOUNT.dkr.ecr.REGION.amazonaws.com/REPOSITORY[:TAG]
434 435 436 437 |
# File 'ecr/repository.rb', line 434 def repository_uri_for_tag(tag = nil) Jsii::Type.check_type(tag, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "tag") unless tag.nil? jsii_call_method("repositoryUriForTag", [tag]) end |
#repository_uri_for_tag_or_digest(tag_or_digest = nil) ⇒ String
Returns the URL of the repository. Can be used in docker push/pull.
ACCOUNT.dkr.ecr.REGION.amazonaws.com/REPOSITORY[:TAG] ACCOUNT.dkr.ecr.REGION.amazonaws.com/REPOSITORY[@DIGEST]
446 447 448 449 |
# File 'ecr/repository.rb', line 446 def repository_uri_for_tag_or_digest(tag_or_digest = nil) Jsii::Type.check_type(tag_or_digest, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "tagOrDigest") unless tag_or_digest.nil? jsii_call_method("repositoryUriForTagOrDigest", [tag_or_digest]) end |
#stack ⇒ AWSCDK::Stack
The stack in which this resource is defined.
156 157 158 |
# File 'ecr/repository.rb', line 156 def stack() jsii_get_property("stack") end |
#to_string ⇒ String
Returns a string representation of this construct.
209 210 211 |
# File 'ecr/repository.rb', line 209 def to_string() jsii_call_method("toString", []) end |
#with(*mixins) ⇒ Constructs::IConstruct
Applies one or more mixins to this construct.
Mixins are applied in order. The list of constructs is captured at the
start of the call, so constructs added by a mixin will not be visited.
Use multiple with() calls if subsequent mixins should apply to added
constructs.
222 223 224 225 226 227 |
# File 'ecr/repository.rb', line 222 def with(*mixins) mixins.each_with_index do |item, index| Jsii::Type.check_type(item, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJjb25zdHJ1Y3RzLklNaXhpbiJ9")), "mixins[#{index}]") end jsii_call_method("with", [*mixins]) end |